Merge pull request #39 from rumengb/master

fix for gcc compilation on windows
This commit is contained in:
jbagg
2020-10-29 21:32:35 -04:00
committed by GitHub

View File

@ -743,6 +743,10 @@ typedef int ssize_t;
// Standard Types
//===========================================================================================================================
#if ( defined( __GNUC__ ) )
#include <stdint.h>
#endif
#if ( !defined( INT8_MIN ) )
#define INT8_MIN SCHAR_MIN