summaryrefslogtreecommitdiffstats
path: root/include/errno.h
blob: 025816e067fed764c776acd74dfeef5054cc0add (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef __ERRNO_H
#define __ERRNO_H

#include <asm-generic/errno.h>

extern int errno;

void perror(const char *s);
const char *errno_str(void);
const char *strerror(int errnum);

#endif /* __ERRNO_H */