diff options
author | Ben Elliston <bje@au.ibm.com> | 2005-07-09 06:56:27 +0000 |
---|---|---|
committer | Ben Elliston <bje@au.ibm.com> | 2005-07-09 06:56:27 +0000 |
commit | c94c2c4ee441eb123bb9ad0ebe106fc5201b3933 (patch) | |
tree | 2966d52167c6fcb0cb3954f2b25369cb13c041e6 /libiberty/memcpy.c | |
parent | da979fa888f0fe1d35a405dd043c22520dad5355 (diff) | |
download | gdb-c94c2c4ee441eb123bb9ad0ebe106fc5201b3933.zip gdb-c94c2c4ee441eb123bb9ad0ebe106fc5201b3933.tar.gz gdb-c94c2c4ee441eb123bb9ad0ebe106fc5201b3933.tar.bz2 |
* memcpy.c: Remove ANSI_PROTOTYPES conditional code.
* memmove.c: Likewise.
* objalloc.c: Likewise.
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); |