blob: e24a33b386fefbbcb0bf24f742cccf32b4adc006 [file] [log] [blame]
yuezonghe824eb0c2024-06-27 02:32:26 -07001#ifndef _ERRNO_H
2
3#include <asm-generic/errno.h>
4
5extern int errno;
6
7#define __set_errno(val) do { errno = val; } while (0)
8
9#endif /* _ERRNO_H */