TacOS  0.2
 Tout Structures de données Fichiers Fonctions Variables Définitions de type Énumérations Macros
errno.h
Aller à la documentation de ce fichier.
1 
29 #ifndef _ERRNO_H_
30 #define _ERRNO_H_
31 
32 #include <sys/cdefs.h>
33 
34 __BEGIN_DECLS
35 
36 /* A garder sychronisé avec kerrno.h. La valeur n'a pas une grande importance. */
37 
38 #define EAGAIN 1
39 #define EBADF 2
40 #define EFAULT 3
41 #define EFBIG 4
42 #define EINTR 5
43 #define EINVAL 6
44 #define EIO 7
45 #define ENOSPC 8
46 #define EPIPE 9
47 #define ERANGE 10
48 #define ENOENT 11
49 #define ENOTDIR 12
50 #define EEXIST 13
51 #define EPERM 14
52 #define EISDIR 15
53 #define ENFILE 16
54 #define EMFILE 17
55 #define ENOMEM 18
56 
57 extern const char* sys_errlist[];
58 extern int errno;
61 __END_DECLS
62 
63 #endif //_ERRNO_H_
int errno
Definition: errno.c:29
const char * sys_errlist[]
Definition: errno.c:31