forked from Macroassembler-AS/asl-releases
-
Notifications
You must be signed in to change notification settings - Fork 0
/
asminclist.h
22 lines (17 loc) · 906 Bytes
/
asminclist.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef _ASMINCLIST_H
#define _ASMINCLIST_H
/* asminclist.c */
/*****************************************************************************/
/* AS-Portierung */
/* */
/* Verwaltung der Include-Verschachtelungsliste */
/* */
/* Historie: 16. 5.1996 Grundsteinlegung */
/* */
/*****************************************************************************/
extern void PushInclude(char *S);
extern void PopInclude(void);
extern void PrintIncludeList(void);
extern void ClearIncludeList(void);
extern void asminclist_init(void);
#endif /* _ASMINCLIST_H */