summaryrefslogtreecommitdiff
path: root/src/setjmp/jmp_buf.c
diff options
context:
space:
mode:
authorJakob Kaivo <jkk@ung.org>2019-03-02 11:48:33 -0500
committerJakob Kaivo <jkk@ung.org>2019-03-02 11:48:33 -0500
commit4d6a7c78e82718b77d647f6c048b4438bcf1cf65 (patch)
tree21bf423ded9a651d212dfbe809edaf57f8189c37 /src/setjmp/jmp_buf.c
parent31fa349ea7fdeb053934450bef080e735dbb2a5d (diff)
clean up documentation
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)
*/