TERES/SOFTWARE/A64-TERES/u-boot_new/include/errno.h
Dimitar Gamishev 093685c7d8 u-boot
2017-10-13 14:02:55 +03:00

10 lines
147 B
C

#ifndef _ERRNO_H
#include <asm-generic/errno.h>
extern int errno;
#define __set_errno(val) do { errno = val; } while (0)
#endif /* _ERRNO_H */