diff options
Diffstat (limited to 'src/math/x86_64/rintl.c')
-rw-r--r-- | src/math/x86_64/rintl.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/math/x86_64/rintl.c b/src/math/x86_64/rintl.c index e1a92077..2ce23fa3 100644 --- a/src/math/x86_64/rintl.c +++ b/src/math/x86_64/rintl.c @@ -5,3 +5,11 @@ long double rintl(long double x) __asm__ ("frndint" : "+t"(x)); return x; } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |