prime/libc/errno.h
Luke Street 00c77e6195 Runtime/math matches; better libc headers
Former-commit-id: bef7db17486213f77de865dfbec529ae23b394a4
2022-08-25 23:46:24 -04: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 35
#define ESIGPARM 36
#ifdef __cplusplus
}
#endif
#endif