errno.h 203 Bytes Edit Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 #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