summaryrefslogtreecommitdiff
path: root/include/errno.h
blob: 1826b92e75f5e0e6d1382cecaf0a747ea0401228 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#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 */