diff options
| author | Kacper <kacper@mail.openlinux.dev> | 2025-12-09 19:20:15 +0100 |
|---|---|---|
| committer | Kacper <kacper@mail.openlinux.dev> | 2025-12-09 19:20:15 +0100 |
| commit | 885f5974cdf65b59415837ae97f5a14ef1350670 (patch) | |
| tree | 66ac13de29c7f4932c5fcae11773df574e4e256a /include/stdlib.h | |
| parent | 8f9e448b2ef6db7cd905540c21f3c5b190e7a1e7 (diff) | |
feat: add gzip and new headers
Diffstat (limited to 'include/stdlib.h')
| -rw-r--r-- | include/stdlib.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/include/stdlib.h b/include/stdlib.h index a9480d38..e9686678 100644 --- a/include/stdlib.h +++ b/include/stdlib.h @@ -19,7 +19,6 @@ #define RAND_MAX (0x7fffffff) typedef __SIZE_TYPE__ size_t; -typedef __WCHAR_TYPE__ wchar_t; typedef struct { int quot; @@ -69,8 +68,6 @@ lldiv_t lldiv(long long, long long); long lrand48(void); void *malloc(size_t); int mblen(const char *, size_t); -size_t mbstowcs(wchar_t *restrict, const char *restrict, size_t); -int mbtowc(wchar_t *restrict, const char *restrict, size_t); char *mkdtemp(char *); int mkostemp(char *, int); int mkstemp(char *); @@ -108,7 +105,5 @@ unsigned long long strtoull(const char *restrict, char **restrict, int); int system(const char *); int unlockpt(int); int unsetenv(const char *); -size_t wcstombs(char *restrict, const wchar_t *restrict, size_t); -int wctomb(char *, wchar_t); #endif |
