actual/packages/node-libofx/OpenSP-1.5.2/lib/memmove.c

16 lines
300 B
C
Raw Permalink Normal View History

2022-04-29 02:44:38 +00:00
#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