refactor(libc): move Lua an DOOM stubs into shared libc modules

This commit is contained in:
boreddevnl
2026-04-19 21:58:25 +02:00
parent f788ba416d
commit 78ae0f154d
36 changed files with 2145 additions and 1263 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -3,6 +3,9 @@
#include <stddef.h>
#ifndef BOREDOS_LIBC_TIME_H
#define BOREDOS_LIBC_TIME_H
typedef long long time_t;
typedef unsigned long long clock_t;
@@ -28,3 +31,5 @@ size_t strftime(char *s, size_t max, const char *fmt, const struct tm *tm);
time_t mktime(struct tm *tm);
#endif
#endif