1
0
Fork 0
mirror of https://github.com/Ysurac/openmptcprouter.git synced 2025-03-09 15:40:20 +00:00
openmptcprouter/root/package/utils/sysupgrade-helper/src/include/errno.h
Ycarus (Yannick Chabanois) 59bc57d5d5 Fix for RUTX platform
2022-03-28 18:17:07 +02:00

9 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 */