summaryrefslogtreecommitdiff
path: root/src/_nonstd.h
blob: 247579cd1b7d5828962280688512c01b075f07e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef ___NONSTD_H__
#define ___NONSTD_H__

typedef enum {
	/* errno.h */
	ERRNO,

	/* locale.h */
	THREAD_LOCALE,
	GLOBAL_LOCALE,
	LCONV,
	LOAD_LOCALE,

	/* [w]ctype.h */
	CTYPE,
	TOLOWER,
	TOUPPER,
} LIBC_INTERNAL;

void *__libc(LIBC_INTERNAL __variable);

#endif