Files
RedBear-OS/include/bits/wchar.h
T
Stephan Vedder cc210361d6 wchar support
2018-07-01 20:59:37 +02:00

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 */