2014-10-29 Jon Turney <jon.turney@dronecode.org.uk>
* libc/include/string.h: Correct guard for strcasecmp().
This commit is contained in:
parent
963545173c
commit
e7ebfb119e
|
@ -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>
|
2014-10-29 Terry Guo <terry.guo@arm.com>
|
||||||
|
|
||||||
* libc/stdio/vfprintf.c (_VFPRINTF_R): Remove unnecessary comparison.
|
* libc/stdio/vfprintf.c (_VFPRINTF_R): Remove unnecessary comparison.
|
||||||
|
|
|
@ -69,7 +69,7 @@ char *_EXFUN(rindex,(const char *, int));
|
||||||
#endif
|
#endif
|
||||||
char *_EXFUN(stpcpy,(char *__restrict, const char *__restrict));
|
char *_EXFUN(stpcpy,(char *__restrict, const char *__restrict));
|
||||||
char *_EXFUN(stpncpy,(char *__restrict, const char *__restrict, size_t));
|
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 *));
|
int _EXFUN(strcasecmp,(const char *, const char *));
|
||||||
#endif
|
#endif
|
||||||
#if __GNU_VISIBLE
|
#if __GNU_VISIBLE
|
||||||
|
|
Loading…
Reference in New Issue