mirror of
https://github.com/encounter/tp.git
synced 2026-03-30 11:40:53 -07:00
e1114ebcf9
* clean up MSL_C files according to prime decomp * remove asm
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 */
|