blob: 0b0aa29aa80eeef1978478c3f8d63d56297d0260 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/* This wchar.h is used if wchar support is disabled in uClibc.
* We still want to provide a few basic definitions as the basic
* C standard requires them. And it makes our lives easier with
* no additional overhead.
*/
#ifndef _WCHAR_H
#define _WCHAR_H
#define MB_CUR_MAX 1
typedef unsigned int wint_t;
#define WEOF (0xffffffffu)
#endif
|