mirror of
https://github.com/zeldaret/af.git
synced 2026-09-26 13:33:16 -04:00
282ac6d404
* libido OK * boot cleanup * format * renames
9 lines
132 B
C
9 lines
132 B
C
#ifndef LIBC_MEMMOVE_H
|
|
#define LIBC_MEMMOVE_H
|
|
|
|
#include "ultra64.h"
|
|
|
|
void* memmove(void* dst, const void* src, size_t len);
|
|
|
|
#endif
|