summaryrefslogtreecommitdiff
path: root/src/setjmp/sigjmp_buf.c
blob: a79c9f9b2b93f1a834498db188ddef586a0a7261 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#if 0

#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)
*/


#endif