comparison dsputil.h @ 1446:daa70b33fc44 libavcodec

removed os_support.h
author bellard
date Mon, 08 Sep 2003 21:05:43 +0000
parents 7d328fd9d8a5
children 8ffd0c00e6df
comparison
equal deleted inserted replaced
1445:f0b40efb1f65 1446:daa70b33fc44
490 return (int)(rint(x)); 490 return (int)(rint(x));
491 #endif 491 #endif
492 } 492 }
493 #endif 493 #endif
494 494
495 #if defined(CONFIG_OS2) || defined(CONFIG_SUNOS)
496 static inline float floorf(float f) {
497 return floor(f);
498 }
495 #endif 499 #endif
500
501 #endif