feat: rename 'ZenithOS' => 'MontaukOS' and fix build system issues

This commit is contained in:
2026-02-28 12:06:18 +01:00
parent 1809ae55e5
commit 83016847b4
136 changed files with 1669 additions and 51769 deletions
+2 -2
View File
@@ -1,6 +1,6 @@
/*
* stb_image_impl.c
* Single compilation unit for stb_image JPEG decoder on ZenithOS
* Single compilation unit for stb_image JPEG decoder on MontaukOS
* Copyright (c) 2026 Daniel Hammer
*/
@@ -21,7 +21,7 @@
#define STBI_NO_STDIO
#define STBI_NO_THREAD_LOCALS
/* Route allocations through libc (which uses ZenithOS heap). */
/* Route allocations through libc (which uses MontaukOS heap). */
#define STBI_MALLOC(sz) malloc(sz)
#define STBI_FREE(p) free(p)
#define STBI_REALLOC(p, newsz) realloc(p, newsz)