summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlejandro Colomar <alx@kernel.org>2024-01-28 18:08:55 +0100
committerAlejandro Colomar <alx@kernel.org>2024-01-28 18:09:24 +0100
commit46a366183244472fd97c8343dc10eb0d560de2d9 (patch)
tree88da62f8470f64aa59d47399bdb88dcfe0cb6d74
parentc7438080dce0d6f912290a618ca38694d47d6ee8 (diff)
downloadliba2i-46a366183244472fd97c8343dc10eb0d560de2d9.tar.gz
include/a2i/: Workaround iwyu(1) issue
Link: <https://github.com/include-what-you-use/include-what-you-use/pull/1449#issuecomment-1913602081> Signed-off-by: Alejandro Colomar <alx@kernel.org>
-rw-r--r--include/a2i/a2i.h2
-rw-r--r--include/a2i/str2i.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/include/a2i/a2i.h b/include/a2i/a2i.h
index 093f712..21e20f1 100644
--- a/include/a2i/a2i.h
+++ b/include/a2i/a2i.h
@@ -6,7 +6,7 @@
#define INCLUDE_A2I_A2I_H_
-#include <assert.h>
+#include <assert.h> // IWYU pragma: keep
#include <errno.h>
#include <stdint.h>
diff --git a/include/a2i/str2i.h b/include/a2i/str2i.h
index 77ba660..fa78de5 100644
--- a/include/a2i/str2i.h
+++ b/include/a2i/str2i.h
@@ -6,7 +6,7 @@
#define INCLUDE_A2I_STR2I_H_
-#include <assert.h>
+#include <assert.h> // IWYU pragma: keep
#include <stddef.h>
#include <a2i/a2i.h>