36ba212f1b91f2784254bf11ab91a94c60782584
[reactos.git] / reactos / drivers / lib / oskittcp / include / oskitfreebsd.h
1 #ifndef _OSKITFREEBSD_H
2 #define _OSKITFREEBSD_H
3
4 extern void oskittcp_die(const char *file, int line);
5
6 #define printf DbgPrint
7 #define ovbcopy(x,y,z) bcopy(x,y,z)
8 #define bzero(x,y) memset(x,0,y)
9 #define bcopy memcpy
10 #define panic(...) do { DbgPrint(__VA_ARGS__); \
11 oskittcp_die(__FILE__,__LINE__); } while(0)
12 #define kmem_malloc(x,y,z) malloc(y)
13
14 #endif//_OSKITFREEBSD_H