mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
bcopy()'s arguments are different order than memcpy()
svn path=/trunk/; revision=10951
This commit is contained in:
parent
822b8e1a47
commit
6f6e411eef
1 changed files with 1 additions and 1 deletions
|
@ -6,7 +6,7 @@ extern void oskittcp_die(const char *file, int line);
|
|||
#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)
|
||||
|
|
Loading…
Reference in a new issue