Luna/libs/libc/include/errno.h

11 lines
131 B
C
Raw Normal View History

#ifndef _ERRNO_H
#define _ERRNO_H
extern int errno;
#define EPERM 1
#define ENOMEM 12
#define EINVAL 22
#define ENOSYS 38
#endif