about summary refs log tree commit diff
path: root/sysdeps/generic/bzero.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1999-05-03 08:46:13 +0000
committerUlrich Drepper <drepper@redhat.com>1999-05-03 08:46:13 +0000
commite57931a8261389d27817543952232eab48469475 (patch)
tree1391e5c0d9f500805cf90098f84da5d04732766a /sysdeps/generic/bzero.c
parent2d8e6e74c10426510b38a4406b79657f5376ba40 (diff)
downloadglibc-e57931a8261389d27817543952232eab48469475.tar.gz
glibc-e57931a8261389d27817543952232eab48469475.tar.xz
glibc-e57931a8261389d27817543952232eab48469475.zip
Update.
1999-05-02  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>

	* sunrpc/Makefile: Generate dependencies for all flavors of
	librpcsvc objects.
	(rpcgen-cmd): Pass -Y flag here and remove it from the macro
	invocations.

1999-05-02  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>

	* elf/dlopenold.c: Move #if down after includes to get
	dependencies right.

1999-05-01  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>

	* sysdeps/generic/bzero.c: Undefine __bzero.
Diffstat (limited to 'sysdeps/generic/bzero.c')
-rw-r--r--sysdeps/generic/bzero.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/sysdeps/generic/bzero.c b/sysdeps/generic/bzero.c
index 002af2f0a3..229fcd365f 100644
--- a/sysdeps/generic/bzero.c
+++ b/sysdeps/generic/bzero.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991, 1997 Free Software Foundation, Inc.
+/* Copyright (C) 1991, 1997, 1999 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Torbjorn Granlund (tege@sics.se).
 
@@ -20,6 +20,8 @@
 #include <string.h>
 #include <memcopy.h>
 
+#undef __bzero
+
 /* Set N bytes of S to 0.  */
 void
 __bzero (s, len)