Luna/kernel/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

6 lines
83 B
C

#pragma once
#define EPERM 1
#define ENOMEM 12
#define EINVAL 22
#define ENOSYS 38