From 7ef8a7379f7f7d09e71ccae2a0b688c3cd80423f Mon Sep 17 00:00:00 2001 From: Jakob Kaivo Date: Fri, 8 Feb 2019 18:42:39 -0500 Subject: merge sources into single tree --- src/setjmp/jmp_buf.c | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 src/setjmp/jmp_buf.c (limited to 'src/setjmp/jmp_buf.c') diff --git a/src/setjmp/jmp_buf.c b/src/setjmp/jmp_buf.c new file mode 100644 index 00000000..6ea7efff --- /dev/null +++ b/src/setjmp/jmp_buf.c @@ -0,0 +1,16 @@ +#include +typedef unsigned long int jmp_buf[32]; + +/** program environment **/ + +/*** +is used to hold all the information needed to restore a a calling +environment. +***/ + +/* +TYPEDEF(an array type) +*/ +/* +STDC(1) +*/ -- cgit v1.2.1