Rev 3675 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 3675 | Rev 4377 | ||
---|---|---|---|
Line 33... | Line 33... | ||
33 | */ |
33 | */ |
34 | 34 | ||
35 | #ifndef LIBC_ERRNO_H_ |
35 | #ifndef LIBC_ERRNO_H_ |
36 | #define LIBC_ERRNO_H_ |
36 | #define LIBC_ERRNO_H_ |
37 | 37 | ||
- | 38 | /* TODO: support threads/fibrils */ |
|
- | 39 | extern int _errno; |
|
- | 40 | #define errno _errno |
|
- | 41 | ||
38 | #include <kernel/errno.h> |
42 | #include <kernel/errno.h> |
39 | 43 | ||
40 | #define ENAMETOOLONG (-256) |
44 | #define ENAMETOOLONG (-256) |
41 | #define EISDIR (-257) |
45 | #define EISDIR (-257) |
42 | #define ENOTDIR (-258) |
46 | #define ENOTDIR (-258) |