2014-10-29 Jon Turney <jon.turney@dronecode.org.uk>

* libc/include/string.h: Correct guard for strcasecmp().
This commit is contained in:
Jon TURNEY 2014-10-30 11:25:17 +00:00
parent 963545173c
commit e7ebfb119e
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2014-10-29 Jon Turney <jon.turney@dronecode.org.uk>
* libc/include/string.h: Correct guard for strcasecmp().
2014-10-29 Terry Guo <terry.guo@arm.com>
* libc/stdio/vfprintf.c (_VFPRINTF_R): Remove unnecessary comparison.

View File

@ -69,7 +69,7 @@ char *_EXFUN(rindex,(const char *, int));
#endif
char *_EXFUN(stpcpy,(char *__restrict, const char *__restrict));
char *_EXFUN(stpncpy,(char *__restrict, const char *__restrict, size_t));
#if __BSD_VISIBLE
#if __BSD_VISIBLE || __POSIX_VISIBLE
int _EXFUN(strcasecmp,(const char *, const char *));
#endif
#if __GNU_VISIBLE