gecko/media/libnestegg/include/nestegg-stdint.h

8 lines
108 B
C
Raw Normal View History

#ifdef _WIN32
typedef __int64 int64_t;
typedef unsigned __int64 uint64_t;
#else
#include <stdint.h>
#endif