actual/packages/node-libofx/OpenSP-1.5.2/lib/memmove.c
2022-04-28 22:44:38 -04:00

15 lines
300 B
C

#include "config.h"
#include <stddef.h>
#ifndef HAVE_MEMMOVE
/* jwl - for some reason it can't find emscripten's memmove but it
* does indeed exist. Don't redefine it. */
/* void *memmove(void *p1, const void *p2, size_t n) */
/* { */
/* bcopy(p2, p1, n); */
/* return p1; */
/* } */
#endif