-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patherror.h
40 lines (36 loc) · 948 Bytes
/
error.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/*
* $Log: error.h,v $
* Revision 1.1 2014-09-01 20:05:30+05:30 Cprogrammer
* Initial revision
*
*
*/
#ifndef ERROR_H
#define ERROR_H
#include <errno.h>
extern int error_ebadf;
extern int error_intr;
extern int error_nomem;
extern int error_noent;
extern int error_txtbsy;
extern int error_io;
extern int error_exist;
extern int error_timeout;
extern int error_inprogress;
extern int error_wouldblock;
extern int error_again;
extern int error_dquot;
extern int error_pipe;
extern int error_perm;
extern int error_acces;
extern int error_nodevice;
extern int error_proto;
extern int error_isdir;
extern int error_connrefused;
extern int error_hostdown;
extern int error_netunreach;
extern int error_hostunreach;
char *error_str(int);
char *estack(int, const char *);
int error_temp(int);
#endif