]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
the async/arch/async_foo.h files are not self contained headers
authorBob Beck <beck@openssl.org>
Wed, 3 Sep 2025 01:10:13 +0000 (19:10 -0600)
committerNorbert Pocs <norbertp@openssl.org>
Wed, 6 May 2026 11:35:24 +0000 (13:35 +0200)
Reviewed-by: Tomas Mraz <tomas@openssl.foundation>
Reviewed-by: Nikola Pajkovsky <nikolap@openssl.org>
Reviewed-by: Norbert Pocs <norbertp@openssl.org>
MergeDate: Wed May  6 11:35:46 2026
(Merged from https://github.com/openssl/openssl/pull/31001)

crypto/async/arch/async_null.inc [moved from crypto/async/arch/async_null.h with 100% similarity]
crypto/async/arch/async_posix.inc [moved from crypto/async/arch/async_posix.h with 100% similarity]
crypto/async/arch/async_win.inc [moved from crypto/async/arch/async_win.h with 100% similarity]
crypto/async/async_local.h

index 9690adbb1e953ea14f11630175b05d5aa461baf8..7d3058e05ecb8fc8d7e0568ac9c9bab7018e1928 100644 (file)
 typedef struct async_ctx_st async_ctx;
 typedef struct async_pool_st async_pool;
 
-#include "arch/async_win.h"
-#include "arch/async_posix.h"
-#include "arch/async_null.h"
+/* clang-format off */
+#include "arch/async_win.inc"
+#include "arch/async_posix.inc"
+#include "arch/async_null.inc"
+/* clang-format on */
 
 struct async_ctx_st {
     async_fibre dispatcher;