libarchive: Avoid 'inline' keyword on XL C v6 (#13148)

This commit is contained in:
Brad King 2012-04-19 09:49:43 -04:00
parent a8995ebe35
commit 09a91c6d5a
1 changed files with 3 additions and 0 deletions

View File

@ -44,9 +44,12 @@
* - Watcom C++ in C code. (For any version?)
* - SGI MIPSpro
* - Microsoft Visual C++ 6.0 (supposedly newer versions too)
* - IBM VisualAge 6 (XL v6)
*/
#if defined(__WATCOMC__) || defined(__sgi) || defined(__hpux) || defined(__BORLANDC__)
#define inline
#elif defined(__IBMC__) && __IBMC__ < 700
#define inline
#elif defined(_MSC_VER) || defined(__osf__)
#define inline __inline
#endif