1#ifndef _LIBC_ERRNO_H 2#define _LIBC_ERRNO_H 3 4#include <bits/errno.h> 5 6extern int errno; 7 8#define set_errno(x) (errno = x) 9 10#endif