Files
Upsilon/liba/include/errno.h
Romain Goyet 872efea4d1 Liba cleanup
2015-05-31 13:51:41 +02:00

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