summaryrefslogtreecommitdiff
path: root/src/stddef/wchar_t.c
blob: dc4955fae372c9130a6c69baa7a6ef4040f1bd48 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include <stddef.h>
typedef int                                                             wchar_t;

/** wide character type **/

/***
is an integer type used to represent wide characters. Using a THIS(),
every character in the current locale can be represented by a single variable.
The null character will always have the value LITERAL(0).
***/

/*
TYPEDEF(integer)
*/
/*
STDC(1)
*/