Win32 doesn't seem to have these functions. ** Therefore implement inline versions of these functions here. */
| 58 | ** Therefore implement inline versions of these functions here. |
| 59 | */ |
| 60 | __inline long int |
| 61 | lrint (double flt) |
| 62 | { int intgr; |
| 63 | |
| 64 | _asm |
| 65 | { fld flt |
| 66 | fistp intgr |
| 67 | } ; |
| 68 | |
| 69 | return intgr ; |
| 70 | } |
| 71 | |
| 72 | __inline long int |
| 73 | lrintf (float flt) |
no outgoing calls
no test coverage detected