blob: d7f66922769a80fdac6f8168b4bc96301a9710a9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef AMALGAM_DEFS_H
#define AMALGAM_DEFS_H
typedef struct ParserThreadData ParserThreadData;
typedef struct amal_compiler amal_compiler;
typedef struct Parser Parser;
typedef struct Scope Scope;
typedef struct FileScopeReference FileScopeReference;
typedef struct FunctionDecl FunctionDecl;
#endif
|