summaryrefslogtreecommitdiff
path: root/scanf
diff options
context:
space:
mode:
authorMarc Glisse <marc.glisse@inria.fr>2021-06-06 23:10:03 +0200
committerMarc Glisse <marc.glisse@inria.fr>2021-06-06 23:10:03 +0200
commitb23aebd94cf1fa2132dc05faa702279b4573d0b3 (patch)
treeb3830c68321f0c20a05116c0b1ea03ba4188526f /scanf
parent6e2405b086ddba4d04646df25491b36a6eea13c3 (diff)
downloadgmp-b23aebd94cf1fa2132dc05faa702279b4573d0b3.tar.gz
#include stdint.h even if we have inttypes.h
It would be tempting to remove those includes from the files that already include gmp-impl.h.
Diffstat (limited to 'scanf')
-rw-r--r--scanf/doscan.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/scanf/doscan.c b/scanf/doscan.c
index eecd31b7f..35273a3ca 100644
--- a/scanf/doscan.c
+++ b/scanf/doscan.c
@@ -53,10 +53,9 @@ see https://www.gnu.org/licenses/. */
#if HAVE_INTTYPES_H
# include <inttypes.h> /* for intmax_t */
-#else
-# if HAVE_STDINT_H
-# include <stdint.h>
-# endif
+#endif
+#if HAVE_STDINT_H
+# include <stdint.h>
#endif
#if HAVE_SYS_TYPES_H