diff options
| author | czjstmax <jstmaxlol@disroot.org> | 2025-12-19 23:32:31 +0100 |
|---|---|---|
| committer | czjstmax <jstmaxlol@disroot.org> | 2025-12-19 23:32:31 +0100 |
| commit | 1c11d915a68e60bd191d43e348d56b9eab71b107 (patch) | |
| tree | 0b79d8ce3f47bc7ead2143e6f6e10e3f7df9075e /src/headers/codegen.h | |
| parent | fe0479de0c0305eafb1d3aa1456850af9e3b4fca (diff) | |
Created `src` dir for code, added Makefile
Diffstat (limited to 'src/headers/codegen.h')
| -rw-r--r-- | src/headers/codegen.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/headers/codegen.h b/src/headers/codegen.h new file mode 100644 index 0000000..d629caf --- /dev/null +++ b/src/headers/codegen.h @@ -0,0 +1,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 |