prime/libc/errno.h
Phillip Stephens efb5cb0597 Match and link sscanf, string and mbstring
Former-commit-id: eb14c6e0ad266574dd52aeb99e5cebf70357b0d7
2023-01-18 21:16:39 -08:00

22 lines
240 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 ESIGPARM 36
#define EFPOS 40
#define EILSEQ 84
#ifdef __cplusplus
}
#endif
#endif