diff options
author | Benjamin Peterson <benjamin@python.org> | 2017-04-21 06:52:19 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-21 06:52:19 (GMT) |
commit | 791dc831198f3ecc1531f8e6f05debf4ce234d00 (patch) | |
tree | debedec99881ffb16db1298e05360d398bb5378c /pyconfig.h.in | |
parent | f60c9e54f501065f3be2a4cfb4c387dfa2f243a9 (diff) | |
download | cpython-791dc831198f3ecc1531f8e6f05debf4ce234d00.zip cpython-791dc831198f3ecc1531f8e6f05debf4ce234d00.tar.gz cpython-791dc831198f3ecc1531f8e6f05debf4ce234d00.tar.bz2 |
remove configure test for inline keyword (#1231)
We require C99, so a configure test for this standard feature is not needed.
Diffstat (limited to 'pyconfig.h.in')
-rw-r--r-- | pyconfig.h.in | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/pyconfig.h.in b/pyconfig.h.in index 21354a5..0a3d59e 100644 --- a/pyconfig.h.in +++ b/pyconfig.h.in @@ -1342,9 +1342,6 @@ /* Define if you want to use computed gotos in ceval.c. */ #undef USE_COMPUTED_GOTOS -/* Define to use the C99 inline keyword. */ -#undef USE_INLINE - /* Enable extensions on AIX 3, Interix. */ #ifndef _ALL_SOURCE # undef _ALL_SOURCE @@ -1484,12 +1481,6 @@ /* Define to `int' if <sys/types.h> doesn't define. */ #undef gid_t -/* Define to `__inline__' or `__inline' if that's what the C compiler - calls it, or to nothing if 'inline' is not supported under any name. */ -#ifndef __cplusplus -#undef inline -#endif - /* Define to `int' if <sys/types.h> does not define. */ #undef mode_t |