diff options
| author | Mel <mel@rnrd.eu> | 2026-01-27 04:15:32 +0100 |
|---|---|---|
| committer | Mel <mel@rnrd.eu> | 2026-01-27 04:15:32 +0100 |
| commit | 129e5669015a7ffd78d0f665f46cc434bcf126d2 (patch) | |
| tree | 97c203070590cf27bba2209c1998bcc546260753 /boot/common.c | |
| parent | 38bc2d06fff322a99ba6ba46df69bbd2b40c6173 (diff) | |
| download | catskill-main.tar.zst catskill-main.zip | |
Signed-off-by: Mel <mel@rnrd.eu>
Diffstat (limited to 'boot/common.c')
| -rw-r--r-- | boot/common.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/boot/common.c b/boot/common.c index 125af86..2f9bdd0 100644 --- a/boot/common.c +++ b/boot/common.c @@ -53,11 +53,11 @@ #define NORETURN _Noreturn // macro used as target for embedding binary files during build into a byte array. -// usage: `const byte test_data[] = CATSKILL_EMBED(./files/test_data.txt);` +// usage: `const byte test_data[] = CATBOOT_EMBED(./files/test_data.txt);` // the array will be filled with hexadecimal values of the file contents, // with a nil byte appended at the end. // the size of the array can be retrieved through `strlen(array)`, or `ARRAY_SIZE(array)-1`. -#define CATSKILL_EMBED(...) { 0 } +#define CATBOOT_EMBED(...) { 0 } // ansi escape codes for terminal color and style #define ANSI(code) "\33[" code "m" |
