11 lines
294 B
C
Executable File
11 lines
294 B
C
Executable File
#ifndef _ASM_GENERIC_ERRNO_BASE_H
|
|
#define _ASM_GENERIC_ERRNO_BASE_H
|
|
|
|
#define ENOENT 2 /* No such file or directory */
|
|
#define ENOMEM 12 /* Out of memory */
|
|
#define EBUSY 16 /* Device or resource busy */
|
|
#define EOPNOTSUPP 95 /* Function not implemented (POSIX.4 / HPUX) */
|
|
|
|
#endif
|
|
|