yaz0.c OK (#71)

This commit is contained in:
Rozelette
2021-03-16 20:49:27 -05:00
committed by GitHub
parent a53626049f
commit 8342329538
16 changed files with 192 additions and 37 deletions
+1 -1
View File
@@ -2,7 +2,7 @@
#include <global.h>
void* Lib_bcopy(void* dest, void* src, size_t n) {
_bcopy(src, dest, n);
bcopy(src, dest, n);
return dest;
}