Changeset 609 for branches/GNU/src/binutils/libiberty/memmove.c
- Timestamp:
- Aug 16, 2003, 6:59:22 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/GNU/src/binutils/libiberty/memmove.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.1.1.2
r608 r609 1 1 /* Wrapper to implement ANSI C's memmove using BSD's bcopy. */ 2 2 /* This function is in the public domain. --Per Bothner. */ 3 4 /* 5 6 @deftypefn Supplemental void* memmove (void *@var{from}, const void *@var{to}, size_t @var{count}) 7 8 Copies @var{count} bytes from memory area @var{from} to memory area 9 @var{to}, returning a pointer to @var{to}. 10 11 @end deftypefn 12 13 */ 14 3 15 #include <ansidecl.h> 4 #ifdef __STDC__16 #ifdef ANSI_PROTOTYPES 5 17 #include <stddef.h> 6 18 #else 7 19 #define size_t unsigned long 8 20 #endif 21 22 void bcopy PARAMS ((const void*, void*, size_t)); 9 23 10 24 PTR -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.