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