-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathjmp.h
30 lines (22 loc) · 831 Bytes
/
jmp.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/********************************************
jmp.h
copyright 1991, Michael D. Brennan
This is a source file for mawk, an implementation of
the AWK programming language.
Mawk is distributed without warranty under the terms of
the GNU General Public License, version 2, 1991.
********************************************/
#ifndef JMP_H
#define JMP_H
void PROTO(BC_new, (void) ) ;
void PROTO(BC_insert, (int, INST*) ) ;
void PROTO(BC_clear, (INST *, INST *) ) ;
void PROTO(code_push, (INST *, unsigned, int, FBLOCK*) ) ;
unsigned PROTO(code_pop, (INST *) ) ;
void PROTO(code_jmp, (int, INST *) ) ;
void PROTO(patch_jmp, (INST *) ) ;
extern int code_move_level ;
/* used to as one part of unique identification of context when
moving code. Global for communication with parser.
*/
#endif /* JMP_H */