opuntiaOS - an operating system targeting x86 and ARMv7
at master 10 lines 129 B view raw
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