1
0
mirror of https://gitlab.xiph.org/xiph/icecast-common.git synced 2024-12-04 14:46:31 -05: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 167bf0c527
commit 14afbc0312

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