error.h
author tomas@localhost
Thu, 01 Nov 2007 14:46:11 +0100
changeset 0 c045670f36e9
permissions -rw-r--r--
Imported queue-fix-1.4
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
     1
#ifndef ERROR_H
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
     2
#define ERROR_H
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
     3
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
     4
extern int errno;
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
     5
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
     6
extern int error_intr;
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
     7
extern int error_nomem;
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
     8
extern int error_noent;
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
     9
extern int error_txtbsy;
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
    10
extern int error_io;
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
    11
extern int error_exist;
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
    12
extern int error_timeout;
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
    13
extern int error_inprogress;
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
    14
extern int error_wouldblock;
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
    15
extern int error_again;
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
    16
extern int error_pipe;
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
    17
extern int error_perm;
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
    18
extern int error_acces;
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
    19
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
    20
extern char *error_str();
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
    21
extern int error_temp();
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
    22
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
    23
#endif