blob: 329da505bd06f36768861c10b15ce30116733ce8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef ERRNO_H
#define ERRNO_H
/*
* Use POSIX error codes
*
* I think POSIX does not explicitly define the error code values,
* so just use Linux/FreeBSD values
*
*/
#define EIO 5
#define ENOMEM 12
#define EINVAL 22
#endif /* ERRNO_H */
|