DynamicLoader: Add missing strlen definition

This commit is contained in:
2026-03-23 18:23:31 +02:00
parent 6a77754adf
commit cbe835a2c8
2 changed files with 10 additions and 0 deletions

View File

@@ -40,6 +40,8 @@ inline void print_uint(int fd, T val, uint8_t base = 10)
print(fd, ptr);
}
size_t strlen(const char* s);
int strcmp(const char* s1, const char* s2);
char* strcpy(char* __restrict s1, const char* __restrict s2);