mirror of
https://github.com/encounter/tp.git
synced 2026-07-11 06:18:46 -07:00
21 lines
276 B
C
21 lines
276 B
C
#ifndef MSL_COMMON_SRC_ERRNO_H
|
|
#define MSL_COMMON_SRC_ERRNO_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#define ENOERR 0
|
|
#define EDOM 33
|
|
#define ERANGE 34
|
|
#define EFPOS 40
|
|
#define ESIGPARM 36
|
|
|
|
extern int errno;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* MSL_COMMON_SRC_ERRNO_H */
|