syscalls: hopefully fix chdir syscall breaking sometimes

This commit is contained in:
2025-11-20 21:12:05 +03:00
parent 1f90fb5825
commit 697029016e
3 changed files with 45 additions and 37 deletions
+1
View File
@@ -11,5 +11,6 @@ size_t strlen(const char*);
char *strcat(char *dest, const char *src);
char *strcpy(char *dest, const char *src);
char *strtok(char *str, const char *delim);
char *strrchr(const char *s, int c);
#endif