Make UEFI boot-platform build again
[haiku.git] / headers / private / fs_shell / fssh_errno.h
blob890da56e2b08771b644d21028eff023c919e1077
1 #ifndef _FSSH_ERRNO_H
2 #define _FSSH_ERRNO_H
4 #ifdef __cplusplus
5 extern "C"
7 #endif
9 #include "fssh_errors.h"
11 #define FSSH_ENOERR 0
12 #define FSSH_EOK FSSH_ENOERR /* some code assumes EOK exists */
14 extern int *_fssh_errnop(void);
15 #define fssh_errno (*(_fssh_errnop()))
17 extern int fssh_get_errno(void);
18 extern void fssh_set_errno(int error);
20 extern int fssh_to_host_error(int error);
22 #ifdef __cplusplus
23 } /* "C" */
24 #endif
26 #endif /* _FSSH_ERRNO_H */