diff options
author | H. Peter Anvin <hpa@zytor.com> | 2008-06-10 13:00:27 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2008-06-10 13:00:27 -0700 |
commit | 253a4e7a9f26facc7e266f700832a213473d05f9 (patch) | |
tree | 87a91f6dea55afe42e4c3daeb1fb0996807c4fc8 /configure.in | |
parent | 51997d3d44a9279508b16e9f3d5e2de173ece7c2 (diff) | |
download | nasm-253a4e7a9f26facc7e266f700832a213473d05f9.tar.gz nasm-253a4e7a9f26facc7e266f700832a213473d05f9.tar.bz2 nasm-253a4e7a9f26facc7e266f700832a213473d05f9.zip |
Make it possible to use "inline" and "restrict"
Put the appropriate machinery in place to be able to use the "inline"
and "restrict" keywords with appropriate semantics.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/configure.in b/configure.in index 9a73514..1551948 100644 --- a/configure.in +++ b/configure.in @@ -92,6 +92,8 @@ AC_CHECK_HEADERS(stdbool.h) dnl Checks for typedefs, structures, and compiler characteristics. AC_C_CONST +AC_C_INLINE +AC_C_RESTRICT AC_TYPE_SIZE_T AC_C_BIGENDIAN(AC_DEFINE(WORDS_BIGENDIAN),AC_DEFINE(WORDS_LITTLEENDIAN)) AH_TEMPLATE(WORDS_BIGENDIAN, |