summaryrefslogtreecommitdiff
path: root/libiberty/memmove.c
diff options
context:
space:
mode:
authorBen Elliston <bje@au.ibm.com>2005-07-09 06:56:27 +0000
committerBen Elliston <bje@au.ibm.com>2005-07-09 06:56:27 +0000
commitc94c2c4ee441eb123bb9ad0ebe106fc5201b3933 (patch)
tree2966d52167c6fcb0cb3954f2b25369cb13c041e6 /libiberty/memmove.c
parentda979fa888f0fe1d35a405dd043c22520dad5355 (diff)
downloadbinutils-gdb-c94c2c4ee441eb123bb9ad0ebe106fc5201b3933.tar.gz
* memcpy.c: Remove ANSI_PROTOTYPES conditional code.
* memmove.c: Likewise. * objalloc.c: Likewise.
Diffstat (limited to 'libiberty/memmove.c')
-rw-r--r--libiberty/memmove.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/libiberty/memmove.c b/libiberty/memmove.c
index 30801f2d1c4..06a24fc2688 100644
--- a/libiberty/memmove.c
+++ b/libiberty/memmove.c
@@ -13,11 +13,7 @@ Copies @var{count} bytes from memory area @var{from} to memory area
*/
#include <ansidecl.h>
-#ifdef ANSI_PROTOTYPES
#include <stddef.h>
-#else
-#define size_t unsigned long
-#endif
void bcopy (const void*, void*, size_t);