1 /*
2  * reimplementation of Daniel Bernsteins unix library.
3  * placed in the public domain by Uwe Ohse, uwe@ohse.de.
4  * This file is automatically generated.
5  */
6 
7 #ifndef ERROR_H
8 #define ERROR_H
9 #include <errno.h>
10 #ifndef errno
11 extern int errno; /* for really old systems */
12 #endif
13 extern const char *error_str(int);
14 extern int error_temp(int);
15 
16 extern const int error_acces;
17 extern const int error_again;
18 extern const int error_connrefused;
19 extern const int error_exist;
20 extern const int error_inprogress;
21 extern const int error_intr;
22 extern const int error_io;
23 extern const int error_isdir;
24 extern const int error_mlink;
25 extern const int error_nodevice;
26 extern const int error_noent;
27 extern const int error_nomem;
28 extern const int error_perm;
29 extern const int error_pipe;
30 extern const int error_proto;
31 extern const int error_timeout;
32 extern const int error_txtbsy;
33 extern const int error_wouldblock;
34 extern const int error_afnosupport;
35 extern const int error_connreset;
36 
37 #endif
38