Files
RedBear-OS/include/bits/errno.h
T
2019-07-01 16:51:19 +02:00

17 lines
211 B
C

#ifndef _BITS_ERRNO_H
#define _BITS_ERRNO_H
#ifdef __cplusplus
extern "C" {
#endif
#define ENOTSUP EOPNOTSUPP
extern __thread int errno;
#ifdef __cplusplus
} // extern "C"
#endif
#endif /* _BITS_ERRNO_H */