Darren Reed | 6b03a34 | 2007-08-21 15:22:35 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2002 by Darren Reed. |
| 3 | * |
| 4 | * See the IPFILTER.LICENCE file for details on licencing. |
Martti Kuparinen | 4a04f46 | 2007-10-25 09:29:36 +0000 | [diff] [blame] | 5 | * |
Darren Reed | 6b03a34 | 2007-08-21 15:22:35 +0000 | [diff] [blame] | 6 | * $Id$ |
Martti Kuparinen | 4a04f46 | 2007-10-25 09:29:36 +0000 | [diff] [blame] | 7 | */ |
Darren Reed | 6b03a34 | 2007-08-21 15:22:35 +0000 | [diff] [blame] | 8 | |
cvs2git | 5540113 | 2006-06-15 16:38:29 +0000 | [diff] [blame] | 9 | #include "ipf.h" |
| 10 | |
| 11 | int bcopywrap(from, to, size) |
Martti Kuparinen | 6d3457f | 2007-10-26 05:34:01 +0000 | [diff] [blame] | 12 | void *from, *to; |
| 13 | size_t size; |
cvs2git | 5540113 | 2006-06-15 16:38:29 +0000 | [diff] [blame] | 14 | { |
| 15 | bcopy((caddr_t)from, (caddr_t)to, size); |
| 16 | return 0; |
| 17 | } |
| 18 | |