inline.h 360 B

12345678910111213141516171819
  1. #ifndef XMLRPC_INLINE_H_INCLUDED
  2. #define XMLRPC_INLINE_H_INCLUDED
  3. /* Xmlrpc-c uses __inline__ to declare functions that should be
  4. compiled as inline code. Some compilers, e.g. GNU, recognize the
  5. __inline__ keyword.
  6. */
  7. #ifndef __GNUC__
  8. #ifndef __inline__
  9. #ifdef __sgi
  10. #define __inline__ __inline
  11. #else
  12. #define __inline__
  13. #endif
  14. #endif
  15. #endif
  16. #endif