blob: 7730b169fd41e74096dd0c143aad0f62399f6d5c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
#ifndef _ERRNO_H
#define _ERRNO_H
#include <abi-bits/errno.h>
#ifdef __cplusplus
extern "C" {
#endif
#ifndef __MLIBC_ABI_ONLY
// Some programs define their own errno as an "extern int" if it is not a macro.
#define errno __mlibc_errno
extern __thread int __mlibc_errno;
int *__errno_location(void);
// Linux extensions.
extern char *program_invocation_name;
extern char *program_invocation_short_name;
extern char *__progname;
extern char *__progname_full;
#endif /* !__MLIBC_ABI_ONLY */
#ifdef __cplusplus
}
#endif
#endif // _ERRNO_H
|