]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
Include <inttypes.h> whenever including <cmocka.h>
authorMichał Kępień <michal@isc.org>
Thu, 18 May 2023 13:12:23 +0000 (15:12 +0200)
committerMichał Kępień <michal@isc.org>
Thu, 18 May 2023 13:12:23 +0000 (15:12 +0200)
Development versions of cmocka require the intmax_t and uintmax_t types
to be defined by the time the test code includes the <cmocka.h> header.
These types are defined in the <stdint.h> header, which is included by
the <inttypes.h> header, which in turn is already explicitly included by
some of the programs in the tests/ directory.  Ensure all programs in
that directory that include the <cmocka.h> header also include the
<inttypes.h> header to future-proof the code while keeping the change
set minimal and the resulting code consistent.  Also prevent explicitly
including the <stdint.h> header in those programs as it is included by
the <inttypes.h> header.

64 files changed:
tests/dns/acl_test.c
tests/dns/db_test.c
tests/dns/dbdiff_test.c
tests/dns/dbiterator_test.c
tests/dns/dbversion_test.c
tests/dns/dns64_test.c
tests/dns/dst_test.c
tests/dns/geoip_test.c
tests/dns/master_test.c
tests/dns/nsec3_test.c
tests/dns/nsec3param_test.c
tests/dns/qp_test.c
tests/dns/qpmulti_test.c
tests/dns/rbtdb_test.c
tests/dns/rdata_test.c
tests/dns/rdataset_test.c
tests/dns/resolver_test.c
tests/dns/rsa_test.c
tests/dns/sigs_test.c
tests/dns/tsig_test.c
tests/dns/zonemgr_test.c
tests/dns/zt_test.c
tests/irs/resconf_test.c
tests/isc/aes_test.c
tests/isc/ascii_test.c
tests/isc/async_test.c
tests/isc/buffer_test.c
tests/isc/counter_test.c
tests/isc/crc64_test.c
tests/isc/errno_test.c
tests/isc/file_test.c
tests/isc/heap_test.c
tests/isc/histo_test.c
tests/isc/hmac_test.c
tests/isc/job_test.c
tests/isc/lex_test.c
tests/isc/loop_test.c
tests/isc/md_test.c
tests/isc/mutex_test.c
tests/isc/netaddr_test.c
tests/isc/netmgr_common.c
tests/isc/quota_test.c
tests/isc/radix_test.c
tests/isc/regex_test.c
tests/isc/result_test.c
tests/isc/safe_test.c
tests/isc/siphash_test.c
tests/isc/sockaddr_test.c
tests/isc/spinlock_test.c
tests/isc/stats_test.c
tests/isc/stream_shutdown.c
tests/isc/symtab_test.c
tests/isc/tcp_test.c
tests/isc/tcpdns_test.c
tests/isc/time_test.c
tests/isc/tls_test.c
tests/isc/tlsdns_test.c
tests/isc/udp_test.c
tests/isc/work_test.c
tests/isccfg/duration_test.c
tests/isccfg/parser_test.c
tests/ns/listenlist_test.c
tests/ns/notify_test.c
tests/ns/plugin_test.c

index 419ffc06d7081701a51695a768b2a75294b21229..306921e64aad0f603ef30010bd2a185dfe5025e9 100644 (file)
@@ -11,6 +11,7 @@
  * information regarding copyright ownership.
  */
 
+#include <inttypes.h>
 #include <sched.h> /* IWYU pragma: keep */
 #include <setjmp.h>
 #include <stdarg.h>
index 87076b935082b65d0c1fe9790b47c3157d2c7679..a854e3669e259b649b4e147f8a71839947821999 100644 (file)
@@ -11,6 +11,7 @@
  * information regarding copyright ownership.
  */
 
+#include <inttypes.h>
 #include <sched.h> /* IWYU pragma: keep */
 #include <setjmp.h>
 #include <stdarg.h>
index 4857683e4c5f61136e6fe17c57222b1088dc9675..f0fb8804f82db0426e5f8e1ffb45a7911ef00e94 100644 (file)
@@ -11,6 +11,7 @@
  * information regarding copyright ownership.
  */
 
+#include <inttypes.h>
 #include <sched.h> /* IWYU pragma: keep */
 #include <setjmp.h>
 #include <stdarg.h>
index f8f008bd519ca5490ceb0622a0e3e5c95a28a452..f0277b16b85d6c1962f2875cb87872d95b22849c 100644 (file)
@@ -11,6 +11,7 @@
  * information regarding copyright ownership.
  */
 
+#include <inttypes.h>
 #include <sched.h> /* IWYU pragma: keep */
 #include <setjmp.h>
 #include <stdarg.h>
index 8c62436901d3fb53794af9e1d5f670b54b90827c..2d37e891bd2b9dc5acb1242693d3361615bd1624 100644 (file)
@@ -11,6 +11,7 @@
  * information regarding copyright ownership.
  */
 
+#include <inttypes.h>
 #include <sched.h> /* IWYU pragma: keep */
 #include <setjmp.h>
 #include <stdarg.h>
index c55d00ef1064dd495a2960a8e13e96dccf48f2ea..ad547ae060b46762a16c72308c0fdc30b27340ed 100644 (file)
@@ -11,6 +11,7 @@
  * information regarding copyright ownership.
  */
 
+#include <inttypes.h>
 #include <sched.h> /* IWYU pragma: keep */
 #include <setjmp.h>
 #include <stdarg.h>
index 15b89d9d4ac40885ea649cf0a95ee52cf9656205..b8f80dd8aab4391731bce14f122bdd5609066761 100644 (file)
@@ -11,6 +11,7 @@
  * information regarding copyright ownership.
  */
 
+#include <inttypes.h>
 #include <sched.h> /* IWYU pragma: keep */
 #include <setjmp.h>
 #include <stdarg.h>
index b4e7cf80a508c4208f80bfc7713bb78afc406d85..d008117fbc149f2155d7919998a45f212ea3f3eb 100644 (file)
@@ -11,6 +11,7 @@
  * information regarding copyright ownership.
  */
 
+#include <inttypes.h>
 #include <sched.h> /* IWYU pragma: keep */
 #include <setjmp.h>
 #include <stdarg.h>
index a2076395a8f4065c6389f81716425ea6ca357ff8..8d33f5ed4b1c45e5575e16dc07a4bc166b1d034e 100644 (file)
@@ -11,6 +11,7 @@
  * information regarding copyright ownership.
  */
 
+#include <inttypes.h>
 #include <sched.h> /* IWYU pragma: keep */
 #include <setjmp.h>
 #include <stdarg.h>
index 4cbf6a9324501772ee0d60eaa9af2744c7d22abc..c2fcacd99435bacac22e132ae5408573822b13dc 100644 (file)
@@ -11,6 +11,7 @@
  * information regarding copyright ownership.
  */
 
+#include <inttypes.h>
 #include <sched.h> /* IWYU pragma: keep */
 #include <setjmp.h>
 #include <stdarg.h>
index 84d1b4cad0f31b377697e5fe52779ce1bec97743..b0282d7e07fa2f4d029e3558751ad865bab08354 100644 (file)
@@ -11,6 +11,7 @@
  * information regarding copyright ownership.
  */
 
+#include <inttypes.h>
 #include <sched.h> /* IWYU pragma: keep */
 #include <setjmp.h>
 #include <stdarg.h>
index 8a1156b5370a8d6fcfe921a98a4b740988fe36ba..750829172005869a715fed8029bba68709e7fb37 100644 (file)
@@ -11,6 +11,7 @@
  * information regarding copyright ownership.
  */
 
+#include <inttypes.h>
 #include <sched.h> /* IWYU pragma: keep */
 #include <setjmp.h>
 #include <stdarg.h>
index 96a26930333e1427507f435d0e49c43c07ee175b..89440984d6717459a1c5bc857564dad5c638b504 100644 (file)
  */
 
 #include <assert.h>
+#include <inttypes.h>
 #include <sched.h> /* IWYU pragma: keep */
 #include <setjmp.h>
 #include <stdarg.h>
 #include <stdbool.h>
-#include <stdint.h>
 #include <stdlib.h>
 
 #define UNIT_TESTING
index 817dd67e2fef649eaacf8ed27a14e460ed82af52..681c0776812fc6156c562425ce6cc143b6c353ff 100644 (file)
@@ -11,6 +11,7 @@
  * information regarding copyright ownership.
  */
 
+#include <inttypes.h>
 #include <sched.h> /* IWYU pragma: keep */
 #include <setjmp.h>
 #include <stdarg.h>
index 234c74b54bc8a6508bf49080cdb373edb0e376b3..8da047b5c12146cfa52f050636d747c489b572a1 100644 (file)
@@ -11,6 +11,7 @@
  * information regarding copyright ownership.
  */
 
+#include <inttypes.h>
 #include <sched.h> /* IWYU pragma: keep */
 #include <setjmp.h>
 #include <stdarg.h>
index e9b47ecbf3f379d4c61c0d761653f4a434f91c82..fc21b29f9d3ad26ce18f465289e96e483b3a581b 100644 (file)
@@ -11,6 +11,7 @@
  * information regarding copyright ownership.
  */
 
+#include <inttypes.h>
 #include <sched.h> /* IWYU pragma: keep */
 #include <setjmp.h>
 #include <stdarg.h>
index 6db03141fac7564a786491dbde5ce85825f17a40..e9d133e3fccc2b4d3aafb6fa8458854a35bb7629 100644 (file)
@@ -11,6 +11,7 @@
  * information regarding copyright ownership.
  */
 
+#include <inttypes.h>
 #include <sched.h> /* IWYU pragma: keep */
 #include <setjmp.h>
 #include <stdarg.h>
index f19105fb015c3898c10a344e7268a51df83b2f2d..c9895690d4424bf948f7fa83d211c8c394fc3e18 100644 (file)
@@ -11,6 +11,7 @@
  * information regarding copyright ownership.
  */
 
+#include <inttypes.h>
 #include <sched.h> /* IWYU pragma: keep */
 #include <setjmp.h>
 #include <stdarg.h>
index 1dfdd83e348a3e3e38e7324a4da17ee0ca05379b..88e4f7fb4e7d8d6194c69ac4b4a490d71eb0b9b9 100644 (file)
@@ -11,6 +11,7 @@
  * information regarding copyright ownership.
  */
 
+#include <inttypes.h>
 #include <sched.h> /* IWYU pragma: keep */
 #include <setjmp.h>
 #include <stdarg.h>
index e18fc69dd6fe32dacf3c050fad8178005e227b1f..a7d11e9e81e69c38d43893a83fb80af59308b7e5 100644 (file)
@@ -11,6 +11,7 @@
  * information regarding copyright ownership.
  */
 
+#include <inttypes.h>
 #include <sched.h> /* IWYU pragma: keep */
 #include <setjmp.h>
 #include <stdarg.h>
index 33d882f67f39807d36809c02500fd9f74a92f289..3d7c3b688b315f640f097bd3e63162d4ec506b21 100644 (file)
@@ -11,6 +11,7 @@
  * information regarding copyright ownership.
  */
 
+#include <inttypes.h>
 #include <sched.h> /* IWYU pragma: keep */
 #include <setjmp.h>
 #include <stdarg.h>
index f3821abc2ef926e3a340ef09e690a9a932ea1b13..c5ab32dff92eb763a9547e1031ab1d915711d86a 100644 (file)
@@ -11,6 +11,7 @@
  * information regarding copyright ownership.
  */
 
+#include <inttypes.h>
 #include <sched.h> /* IWYU pragma: keep */
 #include <setjmp.h>
 #include <stdarg.h>
index cb122df7638928fa0089eaffc762124b2767330b..367898f8c2a164795e9410c01ec755d1ea964eb9 100644 (file)
@@ -13,6 +13,7 @@
 
 #if HAVE_CMOCKA
 
+#include <inttypes.h>
 #include <sched.h> /* IWYU pragma: keep */
 #include <setjmp.h>
 #include <stdarg.h>
index c328b92b02dba5ecbdcda04e7812590ec90b053e..9e9ea22898a535a70f85a06f486953068c5de805 100644 (file)
@@ -11,6 +11,7 @@
  * information regarding copyright ownership.
  */
 
+#include <inttypes.h>
 #include <sched.h> /* IWYU pragma: keep */
 #include <setjmp.h>
 #include <stdarg.h>
index 078a98ce2743c22677235ac24ff94543cadddb33..f49b64b9e2ffd0757fac308344a08b65f29860f5 100644 (file)
  */
 
 #include <ctype.h>
+#include <inttypes.h>
 #include <sched.h> /* IWYU pragma: keep */
 #include <setjmp.h>
 #include <stdarg.h>
-#include <stdint.h>
 #include <stdlib.h>
 
 #define UNIT_TESTING
index 41f0ee18f50c5ddf3b41a01eaf4654cb559ce30e..c56a12b75b2b2e6b5af3cc8809d6525782e583ae 100644 (file)
@@ -11,6 +11,7 @@
  * information regarding copyright ownership.
  */
 
+#include <inttypes.h>
 #include <sched.h> /* IWYU pragma: keep */
 #include <setjmp.h>
 #include <stdarg.h>
index a0530784c33789c4df983e87c366688f90a18f71..fe6d2bcc2763445ecf7362b4d78d471998f91c98 100644 (file)
@@ -12,6 +12,7 @@
  */
 
 #include <fcntl.h>
+#include <inttypes.h>
 #include <limits.h>
 #include <sched.h> /* IWYU pragma: keep */
 #include <setjmp.h>
index 065a6f0a3bf7973e3b06dbfb5c63a5d2debe01f4..dc8dc50f6ad3554b217c6996fe993b77e4562e6a 100644 (file)
@@ -11,6 +11,7 @@
  * information regarding copyright ownership.
  */
 
+#include <inttypes.h>
 #include <sched.h> /* IWYU pragma: keep */
 #include <setjmp.h>
 #include <stdarg.h>
index f635b1bb035b78362f6fdfb6ba144c5f8257a698..a652dd5b0150dadd51be37f6a37e209d0bfd31b1 100644 (file)
@@ -13,6 +13,7 @@
 
 /* ! \file */
 
+#include <inttypes.h>
 #include <sched.h> /* IWYU pragma: keep */
 #include <setjmp.h>
 #include <stdarg.h>
index 11d48fa8f58e28380b2a3902476ddfaa365bcafd..fbfe56ad4e11d40612ef2af98039e172ad83a66d 100644 (file)
@@ -12,6 +12,7 @@
  */
 
 #include <errno.h>
+#include <inttypes.h>
 #include <sched.h> /* IWYU pragma: keep */
 #include <setjmp.h>
 #include <stdarg.h>
index 39670b57eb848e8fcfe8fec9ec17c011d4c49bc4..6b75ba24905173186143ac8c3e267f4258389d27 100644 (file)
@@ -12,6 +12,7 @@
  */
 
 #include <fcntl.h>
+#include <inttypes.h>
 #include <sched.h> /* IWYU pragma: keep */
 #include <setjmp.h>
 #include <stdarg.h>
index 9e29a4b812329d5b916855cef988c31acce81945..19e3ba5a8cb92bc60fde118d77c8b2109ae20fa8 100644 (file)
@@ -13,6 +13,7 @@
 
 /* ! \file */
 
+#include <inttypes.h>
 #include <sched.h> /* IWYU pragma: keep */
 #include <setjmp.h>
 #include <stdarg.h>
index f94cb52424fca888bc0038077a939af34e3efb4f..8f905120b52446e8d2ce8f4661797c1694b5c8ff 100644 (file)
@@ -13,6 +13,7 @@
 
 /* ! \file */
 
+#include <inttypes.h>
 #include <math.h>
 #include <sched.h> /* IWYU pragma: keep */
 #include <setjmp.h>
index 9984cc7208ddc230c2f0a51c1967360697fc5ae5..d836bbed31db75c2e7b9156a70c7f234793eb86f 100644 (file)
@@ -13,6 +13,7 @@
 
 /* ! \file */
 
+#include <inttypes.h>
 #include <sched.h> /* IWYU pragma: keep */
 #include <setjmp.h>
 #include <stdarg.h>
index 9c3a9fff4a220722cb76b3ae47dd757de97b0da0..5e05dbdcbcae967b14ea086c72709a0b2cbce662 100644 (file)
@@ -11,6 +11,7 @@
  * information regarding copyright ownership.
  */
 
+#include <inttypes.h>
 #include <sched.h> /* IWYU pragma: keep */
 #include <setjmp.h>
 #include <stdarg.h>
index 538e135982035eb2795c662e2dc0e89fbb4d566b..ee0a08434190d7ab69f0ef5fe3e65296ed355448 100644 (file)
@@ -11,6 +11,7 @@
  * information regarding copyright ownership.
  */
 
+#include <inttypes.h>
 #include <sched.h> /* IWYU pragma: keep */
 #include <setjmp.h>
 #include <stdarg.h>
index b7acad42244a9ed2830ed831ac95a181394c1e2f..539e273c2820787b9571ab00130f20906e88bf2d 100644 (file)
@@ -11,6 +11,7 @@
  * information regarding copyright ownership.
  */
 
+#include <inttypes.h>
 #include <sched.h> /* IWYU pragma: keep */
 #include <setjmp.h>
 #include <stdarg.h>
index f9adb4fb18907339668ab15131d02689d28c7b72..579078cb7e597524bf284559412c8ee9de1532b2 100644 (file)
@@ -11,6 +11,7 @@
  * information regarding copyright ownership.
  */
 
+#include <inttypes.h>
 #include <sched.h> /* IWYU pragma: keep */
 #include <setjmp.h>
 #include <stdarg.h>
index bd675db28b176d758310421875fdd3eb8b1a821c..3348964989b5fd134e0ea663a923d1ed75f8fccb 100644 (file)
@@ -12,6 +12,7 @@
  */
 
 #include <fcntl.h>
+#include <inttypes.h>
 #include <sched.h> /* IWYU pragma: keep */
 #include <setjmp.h>
 #include <stdarg.h>
index b44982c26b0a1bca9b8ed702f0d0b640109effd6..2394e111666f275d6086c656e01ab714147cd908 100644 (file)
@@ -11,6 +11,7 @@
  * information regarding copyright ownership.
  */
 
+#include <inttypes.h>
 #include <sched.h> /* IWYU pragma: keep */
 #include <setjmp.h>
 #include <stdarg.h>
index 6ed42318b892274fb3259ca5c1ffb8a9f83b359c..300fb5e27fddaf599312d09f1e56bfbfb66e03fa 100644 (file)
@@ -11,6 +11,7 @@
  * information regarding copyright ownership.
  */
 
+#include <inttypes.h>
 #include <sched.h> /* IWYU pragma: keep */
 #include <setjmp.h>
 #include <signal.h>
index 8efa9232c75fff67fa6f49a38a5cafa4ef2e2609..59e865852da078320a9ce9df74d7afee209938be 100644 (file)
@@ -11,6 +11,7 @@
  * information regarding copyright ownership.
  */
 
+#include <inttypes.h>
 #include <sched.h> /* IWYU pragma: keep */
 #include <setjmp.h>
 #include <stdarg.h>
index 2fe9294d697668251ec0b90f6741c0c21e218b2e..1e03e52f2df755b7b71005c719d730856ae79609 100644 (file)
@@ -11,6 +11,7 @@
  * information regarding copyright ownership.
  */
 
+#include <inttypes.h>
 #include <sched.h> /* IWYU pragma: keep */
 #include <setjmp.h>
 #include <stdarg.h>
index 1650af9dc69dfc79cadfc324614ac61ebba35095..379dfdcc152e014b3a2d1c354398bf7a96bc4cf0 100644 (file)
@@ -11,6 +11,7 @@
  * information regarding copyright ownership.
  */
 
+#include <inttypes.h>
 #include <sched.h> /* IWYU pragma: keep */
 #include <setjmp.h>
 #include <stdarg.h>
index cca66b85d610f3cd955131792456876d51f9515c..cec195bef4bcc2e207ede63d807e9e4df8e571d7 100644 (file)
@@ -11,6 +11,7 @@
  * information regarding copyright ownership.
  */
 
+#include <inttypes.h>
 #include <sched.h> /* IWYU pragma: keep */
 #include <setjmp.h>
 #include <stdarg.h>
index 39221649c2253552f7913b17307ad59894db29a6..a3f01fe9affe0b0014cd7498f69d4192d3ae5872 100644 (file)
@@ -13,6 +13,7 @@
 
 /* ! \file */
 
+#include <inttypes.h>
 #include <sched.h> /* IWYU pragma: keep */
 #include <setjmp.h>
 #include <stdarg.h>
index f78c1d1e725accb1a9958c2f3c715a94d7c02179..6fca9303060276009c0a738e931bb4dd9838fcc3 100644 (file)
@@ -11,6 +11,7 @@
  * information regarding copyright ownership.
  */
 
+#include <inttypes.h>
 #include <sched.h> /* IWYU pragma: keep */
 #include <sched.h>
 #include <setjmp.h>
index d89ba51b1e90c81ca4ea94d1451f70d2a26b9a96..4dd70602a8d0cefbad6c870af0854fae7c591326 100644 (file)
@@ -11,6 +11,7 @@
  * information regarding copyright ownership.
  */
 
+#include <inttypes.h>
 #include <sched.h> /* IWYU pragma: keep */
 #include <setjmp.h>
 #include <stdarg.h>
index a7eaae9ae454c07a982f7b31984d115f19678dd1..148832babfdab704ac4e057d080210ec40081edf 100644 (file)
@@ -12,6 +12,7 @@
  */
 
 #include <fcntl.h>
+#include <inttypes.h>
 #include <sched.h> /* IWYU pragma: keep */
 #include <setjmp.h>
 #include <stdarg.h>
index 79d784e2df8963f025e2cbcff88b6433cd7ca2ce..a4753236e508580293290851c329136e3e69f538 100644 (file)
@@ -11,6 +11,7 @@
  * information regarding copyright ownership.
  */
 
+#include <inttypes.h>
 #include <sched.h> /* IWYU pragma: keep */
 #include <setjmp.h>
 #include <stdarg.h>
index 71d6a99ff00d55472a1ff407340812f027147ca5..fc0264cb7ae75315bf7e2a13da10145620fb4839 100644 (file)
@@ -11,6 +11,7 @@
  * information regarding copyright ownership.
  */
 
+#include <inttypes.h>
 #include <sched.h> /* IWYU pragma: keep */
 #include <setjmp.h>
 #include <signal.h>
index 27b8af37ff7a0556bdb2656b1a0109f3d16f345e..2b4f30d9f2c675b99bbdbe601604452059aecaa5 100644 (file)
@@ -11,6 +11,7 @@
  * information regarding copyright ownership.
  */
 
+#include <inttypes.h>
 #include <sched.h> /* IWYU pragma: keep */
 #include <setjmp.h>
 #include <stdarg.h>
index 5b990218c8561c7bf736d6a8f71ebe39ca7a1d9d..79c850508620ba675ace8a5e0bf006332d1ef14d 100644 (file)
@@ -11,6 +11,7 @@
  * information regarding copyright ownership.
  */
 
+#include <inttypes.h>
 #include <sched.h> /* IWYU pragma: keep */
 #include <setjmp.h>
 #include <signal.h>
index 3fedd9e9d4a492a2aa38525bb91016dcd62b70dd..058f10172728618d283be204b76c862a3f163be6 100644 (file)
@@ -11,6 +11,7 @@
  * information regarding copyright ownership.
  */
 
+#include <inttypes.h>
 #include <sched.h> /* IWYU pragma: keep */
 #include <setjmp.h>
 #include <signal.h>
index a581af43f3f8c251bdf9d803fbbaba5ddcea6c0d..18b42e5098cd51f9147c1cf3afb87f3af972d16e 100644 (file)
@@ -11,6 +11,7 @@
  * information regarding copyright ownership.
  */
 
+#include <inttypes.h>
 #include <sched.h> /* IWYU pragma: keep */
 #include <setjmp.h>
 #include <stdarg.h>
index 58aaf131d2e56f62d2d754906a164d495f7d3df7..b3ed83b3bccd5f7d764aafefdabd4dbbaae66f1d 100644 (file)
@@ -11,6 +11,7 @@
  * information regarding copyright ownership.
  */
 
+#include <inttypes.h>
 #include <sched.h> /* IWYU pragma: keep */
 #include <setjmp.h>
 #include <signal.h>
index b3a09b7726e9c330d078d6414435208b7dec1676..1e02b0a48342a89509b4c1e59177f083585bba2a 100644 (file)
@@ -11,6 +11,7 @@
  * information regarding copyright ownership.
  */
 
+#include <inttypes.h>
 #include <sched.h> /* IWYU pragma: keep */
 #include <setjmp.h>
 #include <signal.h>
index 5b8a0ba52767afcbab5de0a9bf6fddc0c33544a0..3ede5a29f1000c714d6e51dabd37d712c89cac20 100644 (file)
@@ -11,6 +11,7 @@
  * information regarding copyright ownership.
  */
 
+#include <inttypes.h>
 #include <sched.h> /* IWYU pragma: keep */
 #include <setjmp.h>
 #include <signal.h>
index 769508fa02caa9bff8772121c5f38379f412973c..3c126ee613e7dc437694d6a3befda2e420a3ffa5 100644 (file)
@@ -11,6 +11,7 @@
  * information regarding copyright ownership.
  */
 
+#include <inttypes.h>
 #include <sched.h> /* IWYU pragma: keep */
 #include <setjmp.h>
 #include <stdarg.h>
index b152578b82086b32b315361a7d998d4ba5bef4ca..8bc911cf23cc5a43d50fade0ee733abda6a3885b 100644 (file)
  * information regarding copyright ownership.
  */
 
+#include <inttypes.h>
 #include <sched.h> /* IWYU pragma: keep */
 #include <setjmp.h>
 #include <stdarg.h>
 #include <stddef.h>
-#include <stdint.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
index 4e2d2881ac39606e4a1f564918d43466604ba17b..baba26dd6d4b634b7cd17daf3cc2ae29b3b4c46f 100644 (file)
@@ -11,6 +11,7 @@
  * information regarding copyright ownership.
  */
 
+#include <inttypes.h>
 #include <sched.h> /* IWYU pragma: keep */
 #include <setjmp.h>
 #include <stdarg.h>
index 35ac84f15cf35ec6d6cf1e8ef97dc1a37bcb5f67..327526dcb83474af98c14afd73c60ba1c860d71e 100644 (file)
@@ -11,6 +11,7 @@
  * information regarding copyright ownership.
  */
 
+#include <inttypes.h>
 #include <sched.h> /* IWYU pragma: keep */
 #include <setjmp.h>
 #include <stdarg.h>
index 1410f6d14845c2197009998e4769bb36a402b9d7..863a4a0692b8c9f9e693de25508c2ddc62c0300d 100644 (file)
@@ -11,6 +11,7 @@
  * information regarding copyright ownership.
  */
 
+#include <inttypes.h>
 #include <sched.h> /* IWYU pragma: keep */
 #include <setjmp.h>
 #include <stdarg.h>
index 90d6bb14de0faea6bc53a55fbd11817c3c31385a..92b9b78b8d1bc33194c2f2a63dda1b3f58ca4a2e 100644 (file)
@@ -11,6 +11,7 @@
  * information regarding copyright ownership.
  */
 
+#include <inttypes.h>
 #include <limits.h>
 #include <sched.h> /* IWYU pragma: keep */
 #include <setjmp.h>