Gitiles
Code Review
Sign In
gerrit.cesnet.cz
/
github
/
trini
/
u-boot
/
870e0bda43c9ea18a5f2fae5e48905c3b44ea18b
/
.
/
include
/
errno.h
blob: e24a33b386fefbbcb0bf24f742cccf32b4adc006 [
file
] [
log
] [
blame
]
Wolfgang Denk
65cd3fa
2010-06-12 00:19:46 +0200
[
diff
] [
blame
]
1
#ifndef
_ERRNO_H
2
3
#include
<asm-generic/errno.h>
4
5
extern
int
errno
;
6
7
#define
__set_errno
(
val
)
do
{
errno
=
val
;
}
while
(
0
)
8
9
#endif
/* _ERRNO_H */