comparison dsputil.h @ 1603:3a633a3feef6 libavcodec

* fixes for broken builds on Solaris, OS2 and all bingendian systems out there.
author romansh
date Tue, 04 Nov 2003 19:35:43 +0000
parents aa4dc16c0f18
children 835cf346975e
comparison
equal deleted inserted replaced
1602:fdb8244da1e5 1603:3a633a3feef6
500 return (int)(rint(x)); 500 return (int)(rint(x));
501 #endif 501 #endif
502 } 502 }
503 #endif 503 #endif
504 504
505 #if defined(CONFIG_OS2) || defined(CONFIG_SUNOS)
506 static inline float floorf(float f) {
507 return floor(f);
508 }
509 #endif 505 #endif
510
511 #endif