summaryrefslogtreecommitdiffstats
path: root/lib/bcopywrap.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/bcopywrap.c')
-rw-r--r--lib/bcopywrap.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/lib/bcopywrap.c b/lib/bcopywrap.c
new file mode 100644
index 0000000..83fd04b
--- /dev/null
+++ b/lib/bcopywrap.c
@@ -0,0 +1,18 @@
+/*
+ * Copyright (C) 2002 by Darren Reed.
+ *
+ * See the IPFILTER.LICENCE file for details on licencing.
+ *
+ * $Id: bcopywrap.c,v 1.1.4.1 2006/06/16 17:20:56 darrenr Exp $
+ */
+
+#include "ipf.h"
+
+int bcopywrap(from, to, size)
+void *from, *to;
+size_t size;
+{
+ bcopy((caddr_t)from, (caddr_t)to, size);
+ return 0;
+}
+
OpenPOWER on IntegriCloud