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
remove gratuitously-different arch-specific bits/ipc.h files
[musl.git]
/
src
/
include
/
errno.h
blob
8ec493777da94725d93e6706bd73daff7eb9fef9
1
#ifndef ERRNO_H
2
#define ERRNO_H
3
4
#include
"../../include/errno.h"
5
6
#ifdef __GNUC__
7
__attribute__
((
const
))
8
#endif
9
hidden
int
*
___errno_location
(
void
);
10
11
#undef errno
12
#define errno (*___errno_location())
13
14
#endif