Fix 'strtul' to 'strtoul'

This commit is contained in:
Bram Windey
2025-01-20 21:02:35 +01:00
committed by Christoffer Lerno
parent ad3cd88350
commit bbef5656a5

View File

@@ -167,7 +167,7 @@ extern fn double strtod(char* str, char** endptr);
extern fn float strtof(char* str, char** endptr);
extern fn ZString strtok(ZString str, ZString delim);
extern fn CLong strtol(char* str, char** endptr, CInt base);
extern fn CULong strtul(char* str, char** endptr, CInt base);
extern fn CULong strtoul(char* str, char** endptr, CInt base);
extern fn usz strxfrm(char* dest, ZString src, usz n);
extern fn CInt system(ZString str);
extern fn Time_t timegm(Tm *timeptr) @if(!env::WIN32);