summaryrefslogtreecommitdiff
path: root/src/setjmp/jmp_buf.h
blob: 5654ebbab286e8b112abaf5a614a3552626305bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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)
*/