10 lines
129 B
C
10 lines
129 B
C
|
|
#ifndef _LIBC_ERRNO_H
|
||
|
|
#define _LIBC_ERRNO_H
|
||
|
|
|
||
|
|
#include <bits/errno.h>
|
||
|
|
|
||
|
|
extern int errno;
|
||
|
|
|
||
|
|
#define set_errno(x) (errno = x)
|
||
|
|
|
||
|
|
#endif
|