Ignore:
Timestamp:
Aug 16, 2003, 6:59:22 PM (22 years ago)
Author:
bird
Message:

binutils v2.14 - offical sources.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/GNU/src/binutils/libiberty/memmove.c

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.1.1.2
    r608 r609  
    11/* Wrapper to implement ANSI C's memmove using BSD's bcopy. */
    22/* 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
     8Copies @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
    315#include <ansidecl.h>
    4 #ifdef __STDC__
     16#ifdef ANSI_PROTOTYPES
    517#include <stddef.h>
    618#else
    719#define size_t unsigned long
    820#endif
     21
     22void bcopy PARAMS ((const void*, void*, size_t));
    923
    1024PTR
Note: See TracChangeset for help on using the changeset viewer.