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