mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-06 17:16:12 +00:00
62729ef0c0
--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
|
|
|