Files
tp/include/errno.h
T

21 lines
276 B
C
Raw Normal View History

2022-03-19 23:44:14 -04:00
#ifndef MSL_COMMON_SRC_ERRNO_H
#define MSL_COMMON_SRC_ERRNO_H
2023-01-02 21:28:46 -08:00
#ifdef __cplusplus
extern "C" {
#endif
#define ENOERR 0
#define EDOM 33
#define ERANGE 34
#define EFPOS 40
#define ESIGPARM 36
2022-04-24 04:02:50 -07:00
extern int errno;
2022-03-19 23:44:14 -04:00
2023-01-02 21:28:46 -08:00
#ifdef __cplusplus
}
#endif
2022-03-19 23:44:14 -04:00
#endif /* MSL_COMMON_SRC_ERRNO_H */