summaryrefslogtreecommitdiff
path: root/include/MSL_C/math.h
diff options
context:
space:
mode:
authorRevo <projectrevotpp@hotmail.com>2020-11-12 13:39:08 -0500
committerGitHub <noreply@github.com>2020-11-12 13:39:08 -0500
commit277ad419e7fbc91baeb9298c3fd0017a066adc21 (patch)
treedc2c8b1321b515fe681e0935f41cc33379e66ebc /include/MSL_C/math.h
parent2ae7b5c414293c202ef46942ad0fa34ad373763f (diff)
parent15eb317faaddf1a81a924b5ac2128ac842a8c991 (diff)
Merge pull request #157 from mparisi20/master
decompile GScamera.o
Diffstat (limited to 'include/MSL_C/math.h')
-rw-r--r--include/MSL_C/math.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/include/MSL_C/math.h b/include/MSL_C/math.h
new file mode 100644
index 0000000..91dd3b4
--- /dev/null
+++ b/include/MSL_C/math.h
@@ -0,0 +1,17 @@
+#ifndef POKEREVO_MATH_H
+#define POKEREVO_MATH_H
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+double atan2(double y, double x);
+double tan(double x);
+double acos(double);
+double sqrt(double);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif //POKEREVO_MATH_H