Files
RedBear-OS/include/bits/wchar.h
T
2018-12-13 08:11:49 -07:00

13 lines
224 B
C

#ifndef _BITS_WCHAR_H
#define _BITS_WCHAR_H
#include <stdint.h>
#define WEOF (0xffffffffu)
#define WCHAR_MIN (0)
#define WCHAR_MAX (0x7fffffff)
typedef int32_t wchar_t;
typedef uint32_t wint_t;
#endif /* _BITS_WCHAR_H */