Gitiles
Code Review
Sign In
git01.mediatek.com
/
filogic
/
uboot
/
2b85c1b5e09bd23a46c9802bbee027303e4e6f7b
/
.
/
include
/
errno.h
blob: e24a33b386fefbbcb0bf24f742cccf32b4adc006 [
file
] [
log
] [
blame
]
Wolfgang Denk
74aedc1
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 */