Luna/libs/libc/include/errno.h

14 lines
182 B
C
Raw Normal View History

#ifndef _ERRNO_H
#define _ERRNO_H
extern int errno;
#define EPERM 1
#define ENOENT 2
#define EBADF 9
#define ENOMEM 12
#define EINVAL 22
#define EMFILE 24
#define ENOSYS 38
#endif