summaryrefslogtreecommitdiff
path: root/src/math/lrint.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/math/lrint.c')
-rw-r--r--src/math/lrint.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/math/lrint.c b/src/math/lrint.c
new file mode 100644
index 00000000..2ee0b986
--- /dev/null
+++ b/src/math/lrint.c
@@ -0,0 +1,13 @@
+# define TGSOURCE "lrint.c"
+#include "nonstd/tgmath.h"
+#include <math.h>
+
+long int TGFN(lrint)(TYPE x)
+{
+ return x;
+}
+
+/*
+STDC(199901)
+LINK(m)
+*/