11 lines
171 B
C
11 lines
171 B
C
#ifndef _BITS_WCHAR_H
|
|
#define _BITS_WCHAR_H
|
|
#include <stdint.h>
|
|
|
|
#define WEOF (0xFFFFFFFFu)
|
|
|
|
typedef int32_t wchar_t;
|
|
typedef uint32_t wint_t;
|
|
|
|
#endif /* _BITS_WCHAR_H */
|