From 5beaa01b4a88607e534984b6d1bd12e527cc1085 Mon Sep 17 00:00:00 2001 From: Alex Beregszaszi Date: Fri, 14 Mar 2003 11:21:19 +0000 Subject: [PATCH] 10l Originally committed as revision 1683 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/os_support.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/os_support.h b/libavcodec/os_support.h index 443b41df2a..879bc470dd 100644 --- a/libavcodec/os_support.h +++ b/libavcodec/os_support.h @@ -25,7 +25,7 @@ #if defined(CONFIG_OS2) #include static inline int usleep(unsigned int t) { return _sleep2(t / 1000); } -static inline float floatf(float f) { return floor(f); } +static inline float floorf(float f) { return floor(f); } static inline int strcasecmp(const char* s1, const char* s2) { return stricmp(s1,s2); } #endif