diff options
author | sayle <sayle@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-04-15 03:35:47 +0000 |
---|---|---|
committer | sayle <sayle@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-04-15 03:35:47 +0000 |
commit | 83f85421ab7b9f97b4152e6174ba2b262d098e67 (patch) | |
tree | dcc4ca6916745869895ab9bff8b4d6e3c5108d71 /libiberty/memmove.c | |
parent | 907e33698da74157790de475aadef58dc997e60b (diff) | |
download | gcc-83f85421ab7b9f97b4152e6174ba2b262d098e67.tar.gz |
* argv.c: Use ANSI_PROTOTYPES instead of __STDC__.
* memchr.c: Likewise.
* strcasecmp.c: Likewise.
* strncasecmp.c: Likewise.
* strncmp.c: Likewise.
* xatexit.c: Likewise.
* xmalloc.c: Likewise.
* copysign.c: Use traditional function declaration instead of DEFUN.
* sigsetmask.c: Likewise.
* memcmp.c: Both of the above, ANSI_PROTOTYPES and DEFUN.
* memset.c: Likewise.
* memcpy.c: ANSI_PROTOTYPES, DEFUN and prototype bcopy.
* memmove.c: Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@65619 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libiberty/memmove.c')
-rw-r--r-- | libiberty/memmove.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libiberty/memmove.c b/libiberty/memmove.c index 3ec73208ca7..00ac053401b 100644 --- a/libiberty/memmove.c +++ b/libiberty/memmove.c @@ -13,12 +13,14 @@ Copies @var{count} bytes from memory area @var{from} to memory area */ #include <ansidecl.h> -#ifdef __STDC__ +#ifdef ANSI_PROTOTYPES #include <stddef.h> #else #define size_t unsigned long #endif +void bcopy PARAMS ((const void*, void*, size_t)); + PTR memmove (s1, s2, n) PTR s1; |