mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-18 16:27:34 +01:00
16 lines
203 B
C
16 lines
203 B
C
#ifndef LIBA_ERRNO_H
|
|
#define LIBA_ERRNO_H
|
|
|
|
/* No such file or directory */
|
|
#define ENOENT 2
|
|
|
|
/* Invalid argument */
|
|
#define EINVAL 22
|
|
|
|
/* Not enough space */
|
|
#define ENOMEM 12
|
|
|
|
extern int errno;
|
|
|
|
#endif
|