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 | |
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.
-rw-r--r-- | libiberty/ChangeLog | 6 | ||||
-rw-r--r-- | libiberty/memcpy.c | 4 | ||||
-rw-r--r-- | libiberty/memmove.c | 4 | ||||
-rw-r--r-- | libiberty/objalloc.c | 2 |
4 files changed, 6 insertions, 10 deletions
diff --git a/libiberty/ChangeLog b/libiberty/ChangeLog index dc55ff2..5bbaa1c 100644 --- a/libiberty/ChangeLog +++ b/libiberty/ChangeLog @@ -1,3 +1,9 @@ +2005-07-09 Ben Elliston <bje@au.ibm.com> + + * memcpy.c: Remove ANSI_PROTOTYPES conditional code. + * memmove.c: Likewise. + * objalloc.c: Likewise. + 2005-07-07 Kelley Cook <kcook@gcc.gnu.org> * config.table: Delete file. Move former contents into ... 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); diff --git a/libiberty/memmove.c b/libiberty/memmove.c index 30801f2..06a24fc 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); diff --git a/libiberty/objalloc.c b/libiberty/objalloc.c index d3d2d16..3ddac2c 100644 --- a/libiberty/objalloc.c +++ b/libiberty/objalloc.c @@ -30,10 +30,8 @@ Boston, MA 02110-1301, USA. */ #include <unixlib.h> #else -#ifdef ANSI_PROTOTYPES /* Get a definition for size_t. */ #include <stddef.h> -#endif #ifdef HAVE_STDLIB_H #include <stdlib.h> |