summaryrefslogtreecommitdiff
path: root/src/setjmp/sigjmp_buf.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/setjmp/sigjmp_buf.c')
-rw-r--r--src/setjmp/sigjmp_buf.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/setjmp/sigjmp_buf.c b/src/setjmp/sigjmp_buf.c
index 09829e88..945448cd 100644
--- a/src/setjmp/sigjmp_buf.c
+++ b/src/setjmp/sigjmp_buf.c
@@ -1,7 +1,15 @@
#include <setjmp.h>
+/** program environment with signal mask **/
+
typedef jmp_buf sigjmp_buf;
+/***
+is used to hold all the information needed to restore a a calling
+environment, including the signal mask.
+***/
+
/*
+TYPEDEF(an array type)
POSIX(1)
*/