diff options
Diffstat (limited to 'src/math/rint.c')
| -rw-r--r-- | src/math/rint.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/math/rint.c b/src/math/rint.c new file mode 100644 index 00000000..f6ba653f --- /dev/null +++ b/src/math/rint.c @@ -0,0 +1,13 @@ +# define TGSOURCE "rint.c" +#include "nonstd/tgmath.h" +#include <math.h> + +TYPE TGFN(rint)(TYPE x) +{ + return x; +} + +/* +STDC(199901) +LINK(m) +*/ |
