13 lines
155 B
C
13 lines
155 B
C
|
|
#ifndef __ERRNO_H__
|
|
#define __ERRNO_H__
|
|
|
|
#define EIO 1
|
|
#define EBADF 2
|
|
#define EINVAL 3
|
|
#define EFAULT 4
|
|
#define ENOMEM 5
|
|
|
|
#endif /* __ERRNO_H__ */
|
|
|