summaryrefslogtreecommitdiff
path: root/05/main.c
diff options
context:
space:
mode:
Diffstat (limited to '05/main.c')
-rw-r--r--05/main.c29
1 files changed, 15 insertions, 14 deletions
diff --git a/05/main.c b/05/main.c
index 34b15fb..0eee651 100644
--- a/05/main.c
+++ b/05/main.c
@@ -1,17 +1,18 @@
-#define _STDLIB_DEBUG
-#include <math.h>
-#include <stdio.h>
-#include <signal.h>
-#include <stdlib.h>
-#include <string.h>
-#include <time.h>
-#include <float.h>
-#include <setjmp.h>
+/* #define _STDLIB_DEBUG */
+/* #include <math.h> */
+/* #include <stdio.h> */
+/* #include <signal.h> */
+/* #include <stdlib.h> */
+/* #include <string.h> */
+/* #include <time.h> */
+/* #include <float.h> */
+/* #include <setjmp.h> */
+/* */
-int main(int argc, char **argv) {
- jmp_buf test;
- setjmp(test);
- longjmp(test, 5);
- return 0;
+char *p = "a";
+char s[] = "hello\0there";
+
+int _main(int argc, char **argv) {
+ return s;
}