9
0
Fork 0
barebox/include/errno.h

13 lines
203 B
C
Raw Normal View History

#ifndef __ERRNO_H
#define __ERRNO_H
#include <asm-generic/errno.h>
2007-07-05 16:01:38 +00:00
extern int errno;
void perror(const char *s);
2007-07-05 16:01:55 +00:00
const char *errno_str(void);
const char *strerror(int errnum);
#endif /* __ERRNO_H */