diff options
| author | manuel <manuel@mausz.at> | 2013-02-04 00:08:53 +0100 |
|---|---|---|
| committer | manuel <manuel@mausz.at> | 2013-02-04 00:08:53 +0100 |
| commit | 69aec538b456402170dc723af417ba5c05389c32 (patch) | |
| tree | e6f34c543f17c6392447ea337b2e2868212424d1 /error.h | |
| download | qmail-69aec538b456402170dc723af417ba5c05389c32.tar.gz qmail-69aec538b456402170dc723af417ba5c05389c32.tar.bz2 qmail-69aec538b456402170dc723af417ba5c05389c32.zip | |
qmail 1.03 import
Diffstat (limited to 'error.h')
| -rw-r--r-- | error.h | 23 |
1 files changed, 23 insertions, 0 deletions
| @@ -0,0 +1,23 @@ | |||
| 1 | #ifndef ERROR_H | ||
| 2 | #define ERROR_H | ||
| 3 | |||
| 4 | extern int errno; | ||
| 5 | |||
| 6 | extern int error_intr; | ||
| 7 | extern int error_nomem; | ||
| 8 | extern int error_noent; | ||
| 9 | extern int error_txtbsy; | ||
| 10 | extern int error_io; | ||
| 11 | extern int error_exist; | ||
| 12 | extern int error_timeout; | ||
| 13 | extern int error_inprogress; | ||
| 14 | extern int error_wouldblock; | ||
| 15 | extern int error_again; | ||
| 16 | extern int error_pipe; | ||
| 17 | extern int error_perm; | ||
| 18 | extern int error_acces; | ||
| 19 | |||
| 20 | extern char *error_str(); | ||
| 21 | extern int error_temp(); | ||
| 22 | |||
| 23 | #endif | ||
