summaryrefslogtreecommitdiff
path: root/src/setjmp/jmp_buf.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/setjmp/jmp_buf.c')
-rw-r--r--src/setjmp/jmp_buf.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/setjmp/jmp_buf.c b/src/setjmp/jmp_buf.c
index 6ea7efff..09786eea 100644
--- a/src/setjmp/jmp_buf.c
+++ b/src/setjmp/jmp_buf.c
@@ -1,8 +1,9 @@
#include <setjmp.h>
-typedef unsigned long int jmp_buf[32];
/** program environment **/
+typedef unsigned long int jmp_buf[32];
+
/***
is used to hold all the information needed to restore a a calling
environment.
@@ -10,7 +11,5 @@ environment.
/*
TYPEDEF(an array type)
-*/
-/*
STDC(1)
*/