summaryrefslogtreecommitdiffstats
path: root/mpeglib/lib/splay/sigsev.c
diff options
context:
space:
mode:
Diffstat (limited to 'mpeglib/lib/splay/sigsev.c')
-rw-r--r--mpeglib/lib/splay/sigsev.c29
1 files changed, 29 insertions, 0 deletions
diff --git a/mpeglib/lib/splay/sigsev.c b/mpeglib/lib/splay/sigsev.c
new file mode 100644
index 00000000..906d8cb9
--- /dev/null
+++ b/mpeglib/lib/splay/sigsev.c
@@ -0,0 +1,29 @@
+/*
+ No SegFault:
+
+ g++ -o sigsev.exe sigsevTest.cpp
+
+ SegFault:
+
+ g++ -o sigsev.exe -O6 sigsevTest.cpp
+ */
+
+#include <stdio.h>
+#undef __NO_MATH_INLINES // <<<< Add this line
+#define __NO_MATH_INLINES 1 // <<<< and this.
+#include <math.h>
+
+
+int main() {
+ printf("hello Martin test->main\n");
+
+ //pow(6.0,3.0);
+ float value;
+ value=cos(double(0));
+ printf("Wert: %f\n",value);
+ pow(6.0,3.0);
+
+ printf("hi:\n");
+ exit(0);
+}
+