diff options
author | Michael Brown <mcb30@etherboot.org> | 2006-12-20 03:35:49 +0000 |
---|---|---|
committer | Michael Brown <mcb30@etherboot.org> | 2006-12-20 03:35:49 +0000 |
commit | e5f0898f38549cfb13d5e32b8909bafa0d46ae4b (patch) | |
tree | d99afa653b0623b25a616444436b8b6ddc6db8f7 /src/include/string.h | |
parent | 04da3556f97999ee80635634ccc789471853be9a (diff) | |
download | ipxe-e5f0898f38549cfb13d5e32b8909bafa0d46ae4b.tar.gz |
Move strerror() prototype to string.h, where it belongs
Diffstat (limited to 'src/include/string.h')
-rw-r--r-- | src/include/string.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/include/string.h b/src/include/string.h index a6f3e71b9..0ac54a061 100644 --- a/src/include/string.h +++ b/src/include/string.h @@ -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 */ |