diff options
| author | czjstmax <jstmaxlol@disroot.org> | 2025-12-19 23:09:12 +0100 |
|---|---|---|
| committer | czjstmax <jstmaxlol@disroot.org> | 2025-12-19 23:09:12 +0100 |
| commit | fe0479de0c0305eafb1d3aa1456850af9e3b4fca (patch) | |
| tree | 6fb8cf53d09f3d2dfa95f6878f4c8c5e8354219a /headers/codegen.h | |
| parent | bfc14c6903a0d082286d02ec2f99856da1bfb719 (diff) | |
Development started, cumulative commit #1
Diffstat (limited to 'headers/codegen.h')
| -rw-r--r-- | headers/codegen.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/headers/codegen.h b/headers/codegen.h new file mode 100644 index 0000000..d629caf --- /dev/null +++ b/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 |