diff options
author | Ulrich Drepper <drepper@redhat.com> | 1998-04-28 09:57:10 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1998-04-28 09:57:10 +0000 |
commit | 4b8f94d33fbd2929bf1046c0c2df23b6110d0b8a (patch) | |
tree | 85d64747018c1cca3d249795fd56da8b1988a53c /string | |
parent | 17d519656a3705ad37665788c5ff6f6c19fb16d8 (diff) | |
download | glibc-4b8f94d33fbd2929bf1046c0c2df23b6110d0b8a.tar.gz |
Update.
1998-04-27 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
* iconvdata/Makefile ($(objpfx)iconv-test.out): Use this as target
instead of do-iconv-test.
($(objpfx)gconv-modules): Define rule only if objpfx is not
empty.
1998-04-27 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
* string/string.h: Fix feature test.
1998-04-27 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
* iconvdata/iso646.c (BODY): Don't use character constants that
depend on signedness of char.
Diffstat (limited to 'string')
-rw-r--r-- | string/string.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/string/string.h b/string/string.h index 15491f8629..266a5d518e 100644 --- a/string/string.h +++ b/string/string.h @@ -216,8 +216,7 @@ extern char *strerror_r __P ((int __errnum, char *__buf, size_t __buflen)); the namespace rules does not allow this. */ extern void __bzero __P ((__ptr_t __s, size_t __n)); -#if defined __USE_BSD || (defined __USE_XOPEN_EXTENDED \ - && (_POSIX_C_SOURCE - 0) < 199506L) +#if defined __USE_BSD || defined __USE_XOPEN_EXTENDED /* Copy N bytes of SRC to DEST (like memmove, but args reversed). */ extern void bcopy __P ((__const __ptr_t __src, __ptr_t __dest, size_t __n)); |