apio
ce6ec3585c
This error is returned by the kernel/C Library when an attempt is made to use a system call that doesn't exist.
11 lines
131 B
C
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 |