summaryrefslogtreecommitdiffstats
path: root/error.h
diff options
context:
space:
mode:
authormanuel <manuel@mausz.at>2013-02-04 00:08:53 +0100
committermanuel <manuel@mausz.at>2013-02-04 00:08:53 +0100
commit69aec538b456402170dc723af417ba5c05389c32 (patch)
treee6f34c543f17c6392447ea337b2e2868212424d1 /error.h
downloadqmail-69aec538b456402170dc723af417ba5c05389c32.tar.gz
qmail-69aec538b456402170dc723af417ba5c05389c32.tar.bz2
qmail-69aec538b456402170dc723af417ba5c05389c32.zip
qmail 1.03 import
Diffstat (limited to 'error.h')
-rw-r--r--error.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/error.h b/error.h
new file mode 100644
index 0000000..01bd3dc
--- /dev/null
+++ b/error.h
@@ -0,0 +1,23 @@
1#ifndef ERROR_H
2#define ERROR_H
3
4extern int errno;
5
6extern int error_intr;
7extern int error_nomem;
8extern int error_noent;
9extern int error_txtbsy;
10extern int error_io;
11extern int error_exist;
12extern int error_timeout;
13extern int error_inprogress;
14extern int error_wouldblock;
15extern int error_again;
16extern int error_pipe;
17extern int error_perm;
18extern int error_acces;
19
20extern char *error_str();
21extern int error_temp();
22
23#endif