2018-11-26 23:22:11 +01:00
|
|
|
#ifndef __ERRNO_H__
|
|
|
|
#define __ERRNO_H__
|
2016-10-06 13:21:30 +02:00
|
|
|
|
2018-11-26 23:22:11 +01:00
|
|
|
#ifndef __error_t_defined
|
|
|
|
typedef int error_t;
|
|
|
|
#define __error_t_defined 1
|
2016-10-06 13:21:30 +02:00
|
|
|
#endif
|
|
|
|
|
2018-11-26 23:22:11 +01:00
|
|
|
#include <sys/errno.h>
|
2016-10-06 13:21:30 +02:00
|
|
|
|
2018-11-26 23:22:11 +01:00
|
|
|
#endif /* !__ERRNO_H__ */
|