blob: b1ea821b17cc8028513c8d8f13e3db0d306b8dab (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#ifndef _SPASM_H
#define _SPASM_H
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <strings.h>
#include <string.h>
#include <ctype.h>
#include <stdarg.h>
#include "error.h"
#include "codegen.h"
#include "parser.h"
#include "opcode.h"
#include "spasm.h"
#include "eval.h"
FILE *spasm_fopen(const char *path, const char *mode);
#endif
|