Fixed a name clash with the langauge

This commit is contained in:
2022-11-07 16:44:21 +00:00
parent d40234637a
commit 7c886b071f
7 changed files with 11 additions and 10 deletions

10
core/core_common.c Normal file
View File

@@ -0,0 +1,10 @@
#include "core_common.h"
STATIC_ASSERT(sizeof(char) == 1);
STATIC_ASSERT(sizeof(short) == 2);
STATIC_ASSERT(sizeof(int) == 4);
STATIC_ASSERT(sizeof(float) == 4);
STATIC_ASSERT(sizeof(unsigned char) == 1);
STATIC_ASSERT(sizeof(unsigned short) == 2);
STATIC_ASSERT(sizeof(unsigned int) == 4);