comparison error.h @ 0:2cb46628feec

from cdb-0.75 per http://cr.yp.to/cdb.html, retrieved 2025-01-03, contents appear to have been create on 2000-02-19
author Henry S. Thompson <ht@inf.ed.ac.uk>
date Wed, 29 Jan 2025 10:50:34 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:2cb46628feec
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 extern int error_nodevice;
20 extern int error_proto;
21
22 extern char *error_str(int);
23 extern int error_temp(int);
24
25 #endif