* include/string.h: Use proper prototype for _strerror.

This commit is contained in:
Christopher Faylor 2000-04-10 23:00:27 +00:00
parent ba87a619ef
commit 23ee7c4463
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
Mon Apr 10 17:24:28 2000 Christopher Faylor <cgf@cygnus.com>
* include/string.h: Use proper prototype for _strerror.
2000-03-30 Mumit Khan <khan@xraylith.wisc.edu> 2000-03-30 Mumit Khan <khan@xraylith.wisc.edu>
* Makefile.in (subdirs): Workaround for broken shells. * Makefile.in (subdirs): Workaround for broken shells.

View File

@ -61,7 +61,7 @@ int strcoll (const char*, const char*); /* Compare using locale */
char* strcpy (char*, const char*); char* strcpy (char*, const char*);
size_t strcspn (const char*, const char*); size_t strcspn (const char*, const char*);
char* strerror (int); /* NOTE: NOT an old name wrapper. */ char* strerror (int); /* NOTE: NOT an old name wrapper. */
char* _strerror (int); char* _strerror (const char *);
size_t strlen (const char*); size_t strlen (const char*);
char* strncat (char*, const char*, size_t); char* strncat (char*, const char*, size_t);
int strncmp (const char*, const char*, size_t); int strncmp (const char*, const char*, size_t);