Skip to content

Commit

Permalink
bpo-40878: xlc cannot handle C99 extern inline. (pythonGH-21887)
Browse files Browse the repository at this point in the history
This applies to the default "extc99" mode.  Python does not compile with "stdc99".
  • Loading branch information
skrah authored Aug 15, 2020
1 parent fa5d725 commit 40e700a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Modules/_decimal/libmpdec/mpdecimal.c
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@

#if defined(_MSC_VER)
#define ALWAYS_INLINE __forceinline
#elif defined(LEGACY_COMPILER)
#elif defined(__IBMC__) || defined(LEGACY_COMPILER)
#define ALWAYS_INLINE
#undef inline
#define inline
Expand Down

0 comments on commit 40e700a

Please sign in to comment.