Changeset 9756131 in mainline for src/lib/memstr.c


Ignore:
Timestamp:
2005-08-31T10:00:14Z (19 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
b9e97fb
Parents:
3de9e5e
Message:

Get rid of memcopy().
All we now have is memcpy() and _memcpy().
memcpy() is defined to be builtin.
Where not applicable, architectures must implement memcpy() code or call slowish _memcopy().

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/lib/memstr.c

    r3de9e5e r9756131  
    4242 *
    4343 */
    44 char *_memcopy(void * dst, const void *src, size_t cnt)
     44char *_memcpy(void * dst, const void *src, size_t cnt)
    4545{
    4646        int i;
     
    5151        return (char *)src;
    5252}
    53 
    5453
    5554/** Fill block of memory
Note: See TracChangeset for help on using the changeset viewer.