summaryrefslogtreecommitdiff
path: root/include/libc/errno.h
blob: f06a661520a776b7931c7a9aa71cc001604f2618 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef _ERRNO_H_
#define _ERRNO_H_

#ifdef __cplusplus
extern "C" {
#endif

extern int errno;

#define ENOERR 0
#define EDOM 33
#define ERANGE 34
#define ESIGPARM 36
#define EFPOS 40
#define	EILSEQ		84

#ifdef __cplusplus
}
#endif

#endif