Commit in reactos/drivers/lib/oskittcp/include on MAIN | |||
oskitfreebsd.h | +1 | -1 | 1.1 -> 1.2 |
bcopy()'s arguments are different order than memcpy()
diff -u -r1.1 -r1.2 --- oskitfreebsd.h 29 May 2004 00:15:45 -0000 1.1 +++ oskitfreebsd.h 21 Sep 2004 04:00:14 -0000 1.2 @@ -6,7 +6,7 @@
#define printf DbgPrint #define ovbcopy(x,y,z) bcopy(x,y,z) #define bzero(x,y) memset(x,0,y)
-#define bcopy memcpy
+#define bcopy(src,dst,n) memcpy(dst,src,n)
#define panic(...) do { DbgPrint(__VA_ARGS__); \ oskittcp_die(__FILE__,__LINE__); } while(0) #define kmem_malloc(x,y,z) malloc(y)