summaryrefslogtreecommitdiff
path: root/src/math/gamma.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/math/gamma.c')
-rw-r--r--src/math/gamma.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/math/gamma.c b/src/math/gamma.c
new file mode 100644
index 00000000..326d5154
--- /dev/null
+++ b/src/math/gamma.c
@@ -0,0 +1,10 @@
+#include <math.h>
+
+double gamma(double x)
+{
+ return x;
+}
+
+/*
+XOPEN(4,600)
+*/