diff options
author | Jakob Kaivo <jkk@ung.org> | 2023-11-14 12:12:10 -0500 |
---|---|---|
committer | Jakob Kaivo <jkk@ung.org> | 2023-11-14 12:12:10 -0500 |
commit | 920746cbb5d18d8aef284d3fe71a57cd52509117 (patch) | |
tree | 11b4436a58c077f36b1236f0c702af00c763e3f6 /src/setjmp | |
parent | f23336fbc3148105c42eebfa44a22d1164828108 (diff) |
disable all functions; will strategically reenable them as tested
Diffstat (limited to 'src/setjmp')
-rw-r--r-- | src/setjmp/_longjmp.c | 5 | ||||
-rw-r--r-- | src/setjmp/_setjmp.c | 5 | ||||
-rw-r--r-- | src/setjmp/longjmp.c | 5 | ||||
-rw-r--r-- | src/setjmp/setjmp.c | 5 | ||||
-rw-r--r-- | src/setjmp/sigjmp_buf.c | 5 | ||||
-rw-r--r-- | src/setjmp/siglongjmp.c | 5 | ||||
-rw-r--r-- | src/setjmp/sigsetjmp.c | 5 |
7 files changed, 35 insertions, 0 deletions
diff --git a/src/setjmp/_longjmp.c b/src/setjmp/_longjmp.c index f8c46b32..8378c9ac 100644 --- a/src/setjmp/_longjmp.c +++ b/src/setjmp/_longjmp.c @@ -1,3 +1,5 @@ +#if 0 + #include <setjmp.h> /** restore calling environment **/ @@ -29,3 +31,6 @@ UNDEFINED(THIS() is called from a nested signal handler) XOPEN(400) XOBSOLETE(700, FUNCTION(siglongjmp)) */ + + +#endif diff --git a/src/setjmp/_setjmp.c b/src/setjmp/_setjmp.c index a2537915..53bc1a2c 100644 --- a/src/setjmp/_setjmp.c +++ b/src/setjmp/_setjmp.c @@ -1,3 +1,5 @@ +#if 0 + #include <setjmp.h> /** save program state **/ @@ -26,3 +28,6 @@ UNDEFINED(A program defines an external identifier named LITERAL(setjmp)) XOPEN(400) XOBSOLETE(700, FUNCTION(siglongjmp)) */ + + +#endif diff --git a/src/setjmp/longjmp.c b/src/setjmp/longjmp.c index 57819ddb..fc4305ca 100644 --- a/src/setjmp/longjmp.c +++ b/src/setjmp/longjmp.c @@ -1,3 +1,5 @@ +#if 0 + #include <setjmp.h> /** restore calling environment **/ @@ -33,3 +35,6 @@ UNDEFINED(The function containing the previous call to FUNCTION(setjmp) is no lo UNDEFINED(THIS() is called from a nested signal handler) STDC(1) */ + + +#endif diff --git a/src/setjmp/setjmp.c b/src/setjmp/setjmp.c index 15eacb2c..c5cad278 100644 --- a/src/setjmp/setjmp.c +++ b/src/setjmp/setjmp.c @@ -1,3 +1,5 @@ +#if 0 + #include <setjmp.h> #include <string.h> @@ -31,3 +33,6 @@ UNDEFINED(A program defines an external identifier named LITERAL(setjmp)) STDC(1) */ + + +#endif diff --git a/src/setjmp/sigjmp_buf.c b/src/setjmp/sigjmp_buf.c index 945448cd..a79c9f9b 100644 --- a/src/setjmp/sigjmp_buf.c +++ b/src/setjmp/sigjmp_buf.c @@ -1,3 +1,5 @@ +#if 0 + #include <setjmp.h> /** program environment with signal mask **/ @@ -13,3 +15,6 @@ environment, including the signal mask. TYPEDEF(an array type) POSIX(1) */ + + +#endif diff --git a/src/setjmp/siglongjmp.c b/src/setjmp/siglongjmp.c index 87146941..8147c036 100644 --- a/src/setjmp/siglongjmp.c +++ b/src/setjmp/siglongjmp.c @@ -1,3 +1,5 @@ +#if 0 + #include <setjmp.h> #include <sys/types.h> #include <signal.h> @@ -33,3 +35,6 @@ UNDEFINED(THIS() is called from a nested signal handler) POSIX(1) */ + + +#endif diff --git a/src/setjmp/sigsetjmp.c b/src/setjmp/sigsetjmp.c index c66617aa..2d78eed5 100644 --- a/src/setjmp/sigsetjmp.c +++ b/src/setjmp/sigsetjmp.c @@ -1,3 +1,5 @@ +#if 0 + #include <setjmp.h> #include <sys/types.h> #include <signal.h> @@ -31,3 +33,6 @@ UNDEFINED(A program defines an external identifier named LITERAL(setjmp)) POSIX(1) */ + + +#endif |