blob: 862d0f2cb5b92726ebda94cf3cc10ca75ffe0f3f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef __ERRNO_H
#define __ERRNO_H
#include <features.h>
#include <linux/errno.h>
extern int sys_nerr;
extern char *sys_errlist[];
#define _sys_nerr sys_nerr
#define _sys_errlist sys_errlist
extern int errno;
extern void perror __P ((__const char* __s));
extern char* strerror __P ((int __errno));
#endif
|