nightmaremail

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

error.h (479B)


      1 #ifndef ERROR_H
      2 #define ERROR_H
      3 
      4 #include <errno.h>
      5 
      6 #define error_intr EINTR
      7 #define error_nomem ENOMEM
      8 #define error_noent ENOENT
      9 #define error_txtbsy ETXTBSY
     10 #define error_io EIO
     11 #define error_exist EEXIST
     12 #define error_timeout ETIMEDOUT
     13 #define error_inprogress EINPROGRESS
     14 #define error_wouldblock EWOULDBLOCK
     15 #define error_again EAGAIN
     16 #define error_pipe EPIPE
     17 #define error_perm EPERM
     18 #define error_acces EACCES
     19 
     20 extern char *error_str();
     21 extern int error_temp();
     22 
     23 #endif