Changeset 26346bd in mainline for boot/generic/include/memstr.h


Ignore:
Timestamp:
2013-03-30T18:26:17Z (11 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
582f4d28
Parents:
0ca441c
Message:

mips32: implement memset() and memcpy()

File:
1 edited

Legend:

Unmodified
Added
Removed
  • boot/generic/include/memstr.h

    r0ca441c r26346bd  
    3535#include <typedefs.h>
    3636
     37#define memset(dst, val, cnt)  __builtin_memset((dst), (val), (cnt))
     38#define memcpy(dst, src, cnt)  __builtin_memcpy((dst), (src), (cnt))
     39
    3740extern void *memmove(void *, const void *, size_t);
    3841
Note: See TracChangeset for help on using the changeset viewer.