diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2003-03-14 11:21:19 +0000 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2003-03-14 11:21:19 +0000 |
commit | 5beaa01b4a88607e534984b6d1bd12e527cc1085 (patch) | |
tree | 6b02913663afdc8b3cea9cef54a4da098a1a112c /libavcodec/os_support.h | |
parent | c506fb40a86c9946f4fb6634c4bdfc27a1920d36 (diff) | |
download | ffmpeg-streaming-5beaa01b4a88607e534984b6d1bd12e527cc1085.zip ffmpeg-streaming-5beaa01b4a88607e534984b6d1bd12e527cc1085.tar.gz |
10l
Originally committed as revision 1683 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/os_support.h')
-rw-r--r-- | libavcodec/os_support.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/os_support.h b/libavcodec/os_support.h index 443b41d..879bc47 100644 --- a/libavcodec/os_support.h +++ b/libavcodec/os_support.h @@ -25,7 +25,7 @@ #if defined(CONFIG_OS2) #include <stdlib.h> 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 |