| 336 | /*# define MS_NINT(x) lround(x) */ |
| 337 | #elif defined(_MSC_VER) && defined(_WIN32) && !defined(USE_GENERIC_MS_NINT) |
| 338 | static __inline long int MS_NINT (double flt) |
| 339 | { int intgr; |
| 340 | |
| 341 | _asm |
| 342 | { fld flt |
| 343 | fistp intgr |
| 344 | } ; |
| 345 | |
| 346 | return intgr ; |
| 347 | } |
| 348 | #elif defined(i386) && defined(__GNUC_PREREQ) && !defined(USE_GENERIC_MS_NINT) |
| 349 | static __inline long int MS_NINT( double __x ) |
| 350 | { |
no outgoing calls
no test coverage detected