mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-02-05 10:34:54 +00:00
3abb7730b2
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3772 d0543943-73ff-0310-b7d9-9358b9ac24b2
20 lines
360 B
C
20 lines
360 B
C
#ifndef XMLRPC_INLINE_H_INCLUDED
|
|
#define XMLRPC_INLINE_H_INCLUDED
|
|
|
|
/* Xmlrpc-c uses __inline__ to declare functions that should be
|
|
compiled as inline code. Some compilers, e.g. GNU, recognize the
|
|
__inline__ keyword.
|
|
*/
|
|
#ifndef __GNUC__
|
|
#ifndef __inline__
|
|
#ifdef __sgi
|
|
#define __inline__ __inline
|
|
#else
|
|
#define __inline__
|
|
#endif
|
|
#endif
|
|
#endif
|
|
|
|
|
|
#endif
|