1 #ifndef MINILANG_H
2 #define MINILANG_H
3 
4 #include <stdlib.h>
5 #include <unistd.h>
6 
7 #include "ml_compiler.h"
8 
9 #ifdef	__cplusplus
10 extern "C" {
11 #endif
12 
13 void ml_init();
14 
15 #ifdef __cplusplus
16 }
17 #endif
18 
19 #endif
20