mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 08:47:28 +01:00
13 lines
153 B
C
13 lines
153 B
C
#ifndef LIBA_ERRNO_H
|
|
#define LIBA_ERRNO_H
|
|
|
|
/* Invalid argument */
|
|
#define EINVAL 22
|
|
|
|
/* Not enough space */
|
|
#define ENOMEM 12
|
|
|
|
extern int errno;
|
|
|
|
#endif
|