From 14afbc0312ff9c2655015896b62c0c12cd769238 Mon Sep 17 00:00:00 2001 From: moritz Date: Tue, 6 Mar 2007 13:35:29 +0000 Subject: [PATCH] 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 --- timing/timing.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/timing/timing.h b/timing/timing.h index 8b3178e..0c0b825 100644 --- a/timing/timing.h +++ b/timing/timing.h @@ -13,7 +13,7 @@ #include #endif -#ifdef _WIN32 +#if defined(_WIN32) && !defined(int64_t) typedef __int64 int64_t; typedef unsigned __int64 uint64_t; #endif