diff options
author | Roland McGrath <roland@gnu.org> | 1999-04-30 14:36:46 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1999-04-30 14:36:46 +0000 |
commit | 55bdfe275c3e8ac79f363a1d794ae2389cbd3645 (patch) | |
tree | ab205df782c942eb502c1090833185b99b517e70 /sysdeps | |
parent | 6df34c4b46a2ab809b9196c92f23fc82e116c231 (diff) | |
download | glibc-55bdfe275c3e8ac79f363a1d794ae2389cbd3645.tar.gz glibc-55bdfe275c3e8ac79f363a1d794ae2389cbd3645.tar.xz glibc-55bdfe275c3e8ac79f363a1d794ae2389cbd3645.zip |
1999-04-30 Roland McGrath <roland@baalperazim.frob.com>
* sysdeps/i386/bzero.c: Add #undef __bzero.
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/i386/bzero.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sysdeps/i386/bzero.c b/sysdeps/i386/bzero.c index 80574cca6a..75ae2974bf 100644 --- a/sysdeps/i386/bzero.c +++ b/sysdeps/i386/bzero.c @@ -1,6 +1,6 @@ /* bzero -- set a block of memory to zero. For Intel 80x86, x>=3. This file is part of the GNU C Library. - Copyright (C) 1991, 1992, 1993, 1997, 1998 Free Software Foundation, Inc. + Copyright (C) 1991,92,93,97,98,99 Free Software Foundation, Inc. Contributed by Torbjorn Granlund (tege@sics.se). The GNU C Library is free software; you can redistribute it and/or @@ -22,6 +22,7 @@ #include <memcopy.h> #undef bzero +#undef __bzero #ifdef __GNUC__ |