prime/libc/errno.h
Phillip Stephens 34b752de3e Match and link FILE_POS
Former-commit-id: a1ea985b7cbd943a8c17008d71c9c458957ff917
2022-10-13 08:19:18 -07:00

21 lines
221 B
C

#ifndef _ERRNO_H_
#define _ERRNO_H_
#ifdef __cplusplus
extern "C" {
#endif
extern int errno;
#define ENOERR 0
#define EDOM 33
#define ERANGE 34
#define EFPOS 40
#define ESIGPARM 36
#ifdef __cplusplus
}
#endif
#endif