diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-02-24 08:24:58 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-02-24 08:24:58 +0000 |
commit | 002e2dc42b80045459fdfe9864ff11adaeb0b0a9 (patch) | |
tree | 3465eba4f73252a3340fabba0e072ddd634816e8 /string | |
parent | 9323b58f76b756cc41b6c39b48d42b697a1bd4ec (diff) | |
download | glibc-002e2dc42b80045459fdfe9864ff11adaeb0b0a9.tar.gz glibc-002e2dc42b80045459fdfe9864ff11adaeb0b0a9.tar.xz glibc-002e2dc42b80045459fdfe9864ff11adaeb0b0a9.zip |
Update.
2000-02-24 Ulrich Drepper <drepper@redhat.com> * conform/conformtest.pl (@headers): Add string.h and strings.h. * conform/data/string.h-data: New file. * conform/data/strings.h-data: New file. * string/string.h [__USE_XOPEN]: Don't declare functions from <strings.h> here as well.
Diffstat (limited to 'string')
-rw-r--r-- | string/string.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/string/string.h b/string/string.h index 58d0e7162e..d481e3fd3d 100644 --- a/string/string.h +++ b/string/string.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1991,92,93,95,96,97,98,99 Free Software Foundation, Inc. +/* Copyright (C) 1991,92,93,95,96,97,98,99, 2000 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -230,7 +230,7 @@ extern char *strerror_r (int __errnum, char *__buf, size_t __buflen) __THROW; the namespace rules does not allow this. */ extern void __bzero (void *__s, size_t __n) __THROW; -#if defined __USE_BSD || defined __USE_XOPEN_EXTENDED +#if defined __USE_BSD /* Copy N bytes of SRC to DEST (like memmove, but args reversed). */ extern void bcopy (__const void *__src, void *__dest, size_t __n) __THROW; @@ -268,7 +268,7 @@ extern int strcasecmp (__const char *__s1, __const char *__s2) __THROW; /* Compare no more than N chars of S1 and S2, ignoring case. */ extern int strncasecmp (__const char *__s1, __const char *__s2, size_t __n) __THROW; -#endif /* Use BSD or X/Open Unix. */ +#endif /* Use BSD. */ #ifdef __USE_GNU /* Again versions of a few functions which use the given locale instead |