repo.or.cz
/
musl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
work around regression building for armhf with clang (compiler bug)
[musl.git]
/
include
/
errno.h
blob
93f5f6ecb6c357816ad0a31e209df751de09e881
1
#ifndef _ERRNO_H
2
#define _ERRNO_H
3
4
#ifdef __cplusplus
5
extern
"C"
{
6
#endif
7
8
#include <features.h>
9
10
#include <bits/errno.h>
11
12
int
*
__errno_location
(
void
);
13
#define errno (*__errno_location())
14
15
#ifdef _GNU_SOURCE
16
extern
char
*
program_invocation_short_name
, *
program_invocation_name
;
17
#endif
18
19
#ifdef __cplusplus
20
}
21
#endif
22
23
#endif
24