Luna/libs/libc/include/errno.h
apio ce6ec3585c Kernel, libc: Add ENOSYS
This error is returned by the kernel/C Library when an attempt is made to use a system call that doesn't exist.
2022-10-08 14:18:25 +02:00

11 lines
131 B
C

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