1
0
mirror of https://gitlab.xiph.org/xiph/icecast-server.git synced 2024-09-29 04:25:55 -04:00

Only define [u]int64_t on Windows if they haven't been defined already (e.g. in

os.h from libshout or stdint.h in case they ever show up there.)

ok msmith

svn path=/icecast/trunk/timing/; revision=12663
This commit is contained in:
moritz 2007-03-06 13:35:29 +00:00
parent f36fd392e8
commit d8fafe1935

View File

@ -13,7 +13,7 @@
#include <stdint.h>
#endif
#ifdef _WIN32
#if defined(_WIN32) && !defined(int64_t)
typedef __int64 int64_t;
typedef unsigned __int64 uint64_t;
#endif