Revert "syscall.c: Use common syscall.c for ARM"
[uclibc-ng.git] / include / wchar-stub.h
blob0b0aa29aa80eeef1978478c3f8d63d56297d0260
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 #define MB_CUR_MAX 1
11 typedef unsigned int wint_t;
12 #define WEOF (0xffffffffu)
14 #endif