summaryrefslogtreecommitdiff
path: root/src/setjmp/jmp_buf.c
blob: 09786eeafc61183679ee32277a511f3b3f47511f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <setjmp.h>

/** program environment **/

typedef unsigned long int                                           jmp_buf[32];

/***
is used to hold all the information needed to restore a a calling
environment.
***/

/*
TYPEDEF(an array type)
STDC(1)
*/