mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-26 19:44:11 +08:00
* memcpy.c: Remove ANSI_PROTOTYPES conditional code.
* memmove.c: Likewise. * objalloc.c: Likewise.
This commit is contained in:
parent
da979fa888
commit
c94c2c4ee4
@ -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 ...
|
||||
|
@ -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);
|
||||
|
||||
|
@ -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);
|
||||
|
||||
|
@ -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>
|
||||
|
Loading…
Reference in New Issue
Block a user