mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
27487c2512
--HG-- rename : media/libnestegg/include/_stdint.h => media/libnestegg/include/nestegg-stdint.h
8 lines
108 B
C
8 lines
108 B
C
#ifdef _WIN32
|
|
typedef __int64 int64_t;
|
|
typedef unsigned __int64 uint64_t;
|
|
#else
|
|
#include <stdint.h>
|
|
#endif
|
|
|