MicrOS
errno.h
Go to the documentation of this file.
1 #ifndef ERRNO_H
2 #define ERRNO_H
3 
4 #ifdef __cplusplus
5 extern "C" {
6 #endif
7 
9 typedef int errno_t;
10 
12 
13 extern errno_t _errno;
15 
16 #define errno _errno
17 
19 
20 #define EDOM 1
21 
23 #define ERANGE 2
24 
26 #define EILSEQ 3
27 
28 #ifdef __cplusplus
29 }
30 #endif
31 
32 #endif // ERRNO_H
int errno_t
Type or error.
Definition: errno.h:9
errno_t _errno
Last error number.
Definition: errno.c:3