fixed linux compile

This commit is contained in:
2025-02-13 07:06:10 +01:00
parent 5d41a592bb
commit 2efb106fc3
9 changed files with 28 additions and 36 deletions
+2 -2
View File
@@ -14,11 +14,11 @@ struct types
int8_t char_ = 'c';
short short_ = -127;
int int_ = -65000;
long long long64_ = -1234567890;
int64_t long64_ = -1234567890;
unsigned char unsigned_char_ = 'H';
unsigned short unsigned_short_ = 128;
unsigned int unsigned_int_ = 65000;
unsigned long long unsigned_long64_ = 1234567890;
uint64_t unsigned_long64_ = 1234567890;
float float_ = 3.1415f;
double double_ = 1.1414;
bool bool_ = true;