blob: d629caf0380c5dd4c0e1d35a7dc8d95a04602bd6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef CRBC_CODEGEN
#define CRBC_CODEGEN
// Header file for CReborn's Codegen API
#include <stdlib.h>
#include <string.h>
static inline int fb(int x) {
return x;
}
#endif
|