summaryrefslogtreecommitdiffstats
path: root/byterun/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'byterun/config.h')
-rw-r--r--byterun/config.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/byterun/config.h b/byterun/config.h
index 553a607ed..7d15d4dc3 100644
--- a/byterun/config.h
+++ b/byterun/config.h
@@ -13,14 +13,10 @@
#ifdef HAS_BCOPY
/* Nothing to do */
#else
-#ifdef HAS_MEMCPY
-#define bcopy(src,dst,len) memcpy((dst), (src), (len))
-#else
#define bcopy(src,dst,len) memmov((dst), (src), (len))
#define USING_MEMMOV
#endif
#endif
-#endif
#ifndef HAS__SETJMP
#define _setjmp setjmp