malloc: add glibc compat symbols
[uclibc-ng.git] / include / wchar-stub.h
blob918c78dd42810b1fdefe2b9fab20f2da5f1b7add
1 /* This wchar.h is used if wchar support is disabled in uClibc.
2 * We still want to provide a few basic definitions as the basic
3 * C standard requires them. And it makes our lives easier with
4 * no additional overhead.
5 */
7 #ifndef _WCHAR_H
8 #define _WCHAR_H
10 typedef unsigned int wint_t;
11 #define WEOF (0xffffffffu)
13 #endif