fix common.h warning

This commit is contained in:
Alejandro Javier Asenjo Nitti 2023-10-13 07:27:43 -03:00
parent 7c4292c63e
commit e1e161bd19

View File

@ -1,3 +1,6 @@
#ifndef COMMON_H
#define COMMON_H
typedef signed char s8;
typedef signed short s16;
typedef signed int s32;
@ -16,3 +19,4 @@ typedef float f32;
double fabsf(double f);
#pragma intrinsic(fabsf)
#endif