shithub: scc

ref: 30d5a2c869c5f47cca98fdedb9024d462c6b9191
dir: /lib/c/include/errno.h/

View raw version
#ifndef _ERRNO_H
#define _ERRNO_H

#define EDOM   1
#define EILSEQ 2
#define ERANGE 3
#define ENOMEM 4
#define EBADF  5

extern int errno;
extern char *_sys_errlist[];
extern int _sys_nerr;

#endif