david/ipxe
david
/
ipxe
Archived
1
0
Fork 0

Move strerror() prototype to string.h, where it belongs

This commit is contained in:
Michael Brown 2006-12-20 03:35:49 +00:00
parent 04da3556f9
commit e5f0898f38
2 changed files with 2 additions and 2 deletions

View File

@ -176,8 +176,6 @@
extern int errno;
extern const char * strerror ( int errno );
struct errortab {
int errno;
const char *text;

View File

@ -68,4 +68,6 @@ char * strstr(const char * s1,const char * s2);
void * memchr(const void *s, int c, size_t n);
char * strdup(const char *s);
extern const char * strerror ( int errno );
#endif /* ETHERBOOT_STRING */