From 777885492ddb16bf3862cf3d5bd0cccea587f5e1 Mon Sep 17 00:00:00 2001 From: Conrad Parker Date: Fri, 13 Aug 2004 01:48:19 +0000 Subject: [PATCH] fix _WIN32 check to exclude Symbian emulator builds svn path=/trunk/vorbis/; revision=7543 --- lib/os.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/os.h b/lib/os.h index c031704..1f3977f 100644 --- a/lib/os.h +++ b/lib/os.h @@ -45,7 +45,7 @@ # define M_PI (3.1415926536f) #endif -#ifdef WIN32 +#if defined(_WIN32) && !defined(__SYMBIAN32__) # include # define rint(x) (floor((x)+0.5f)) # define NO_FLOAT_MATH_LIB -- 2.7.4