Gitiles
Code Review
Sign In
192.168.1.100
/
T106_DC
/
9ed821d7e5d875a3395740a9cc2545671fa429b7
/
.
/
boot
/
common
/
src
/
uboot
/
include
/
errno.h
blob: e24a33b386fefbbcb0bf24f742cccf32b4adc006 [
file
] [
log
] [
blame
]
lh
9ed821d
2023-04-07 01:36:19 -0700
[
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 */