From 885f5974cdf65b59415837ae97f5a14ef1350670 Mon Sep 17 00:00:00 2001 From: Kacper Date: Tue, 9 Dec 2025 19:20:15 +0100 Subject: feat: add gzip and new headers --- include/stdlib.h | 5 ----- 1 file changed, 5 deletions(-) (limited to 'include/stdlib.h') 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 -- cgit v1.2.3