]> git.ipfire.org Git - thirdparty/strongswan.git/blob - programs/pluto/rsaref/unix.h
- import of strongswan-2.7.0
[thirdparty/strongswan.git] / programs / pluto / rsaref / unix.h
1
2
3 #ifndef UNIX_H
4 #define UNIX_H
5
6 #define CK_PTR *
7
8 #define CK_DEFINE_FUNCTION(returnType, name) \
9 returnType name
10
11 #define CK_DECLARE_FUNCTION(returnType, name) \
12 returnType name
13
14 #define CK_DECLARE_FUNCTION_POINTER(returnType, name) \
15 returnType (* name)
16
17 #define CK_CALLBACK_FUNCTION(returnType, name) \
18 returnType (* name)
19
20 #ifndef NULL_PTR
21 #define NULL_PTR 0
22 #endif
23
24 #endif