vide_public/external/libsdf/libsw/bcopy.c
2013-03-01 15:43:05 -05:00

6 lines
97 B
C

#include <string.h>
void bcopy(void *b1, void *b2, int length){
memmove(b2, b1, length);
}