1 /*
2  * stack.h - header for stack.c
3  *
4  * Copyright 1993 Matthew Green
5  * Copyright 1997 EPIC Software Labs
6  * See the COPYRIGHT file for license information.
7  */
8 
9 #ifndef __stack_h__
10 #define __stack_h__
11 
12 #define STACK_POP 	0
13 #define STACK_PUSH 	1
14 #define STACK_SWAP 	2
15 #define STACK_LIST 	3
16 
17 #define STACK_DO_ALIAS	0x0001
18 #define STACK_DO_ASSIGN	0x0002
19 
20 #endif /* __stack_h_ */
21