initial load of upstream version 1.06.32
[xmlrpc-c] / lib / util / include / inline.h
1 #ifndef XMLRPC_INLINE_H_INCLUDED
2 #define XMLRPC_INLINE_H_INCLUDED
3
4 /* Xmlrpc-c uses __inline__ to declare functions that should be
5     compiled as inline code.  Some compilers, e.g. GNU, recognize the
6     __inline__ keyword.
7 */
8 #ifndef __GNUC__
9 #ifndef __inline__
10 #ifdef __sgi
11 #define __inline__ __inline
12 #else
13 #define __inline__
14 #endif
15 #endif
16 #endif
17
18
19 #endif