Files
RedBear-OS/include/bits/errno.h
T
2019-07-03 19:47:55 -06:00

17 lines
220 B
C

#ifndef _BITS_ERRNO_H
#define _BITS_ERRNO_H
#ifdef __cplusplus
extern "C" {
#endif
#define ENOTSUP EOPNOTSUPP
#define errno (*__errno_location())
#ifdef __cplusplus
} // extern "C"
#endif
#endif /* _BITS_ERRNO_H */