Files
Upsilon/liba/include/errno.h
Romain Goyet 15725a5cc8 [liba] Add ENOENT to errno.h
Change-Id: Ie25fae6abff7c384ee7bea02aa1d2dbba82c06c4
2017-08-04 17:55:53 +02:00

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