diff options
author | Ben Elliston <bje@gnu.org> | 2005-07-22 13:21:19 +1000 |
---|---|---|
committer | Ben Elliston <bje@gcc.gnu.org> | 2005-07-22 13:21:19 +1000 |
commit | b4db223f6e04a59bab5f87e23c812b3952024c64 (patch) | |
tree | 46156482c1c398efc4b9468c8105974454e4e1d7 /libiberty/memcpy.c | |
parent | 8b82b724829a3715136860ab6528ec435855f1aa (diff) | |
download | gcc-b4db223f6e04a59bab5f87e23c812b3952024c64.zip gcc-b4db223f6e04a59bab5f87e23c812b3952024c64.tar.gz gcc-b4db223f6e04a59bab5f87e23c812b3952024c64.tar.bz2 |
Recover patch lost in the sourceware repository:
2005-07-09 Ben Elliston <bje@au.ibm.com>
* memcpy.c: Remove ANSI_PROTOTYPES conditional code.
* memmove.c: Likewise.
* objalloc.c: Likewise.
From-SVN: r102268
Diffstat (limited to 'libiberty/memcpy.c')
-rw-r--r-- | libiberty/memcpy.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/libiberty/memcpy.c b/libiberty/memcpy.c index 8a97b85..9b5b242 100644 --- a/libiberty/memcpy.c +++ b/libiberty/memcpy.c @@ -13,11 +13,7 @@ Copies @var{length} bytes from memory region @var{in} to region */ #include <ansidecl.h> -#ifdef ANSI_PROTOTYPES #include <stddef.h> -#else -#define size_t unsigned long -#endif void bcopy (const void*, void*, size_t); |