From 49a0ae77e51813c2e02d0499a4e6e85cdc1cd641 Mon Sep 17 00:00:00 2001 From: Tyler Erickson Date: Wed, 30 Oct 2024 09:43:56 -0600 Subject: [PATCH] bug: Adding missing stdarg.h header Adding stdarg.h to io_utils.h and secure_file.h since it was missing. This causes a build failure on Illumos based distributions. For some reason Linux, FreeBSD, and Windows do not complain about this. [Seagate/openSeaChest#166] Signed-off-by: Tyler Erickson --- include/io_utils.h | 1 + include/secure_file.h | 1 + 2 files changed, 2 insertions(+) diff --git a/include/io_utils.h b/include/io_utils.h index 0dc6d3f..3339e28 100644 --- a/include/io_utils.h +++ b/include/io_utils.h @@ -21,6 +21,7 @@ #include "common_types.h" #include "code_attributes.h" #include +#include #if defined (__cplusplus) extern "C" diff --git a/include/secure_file.h b/include/secure_file.h index 549d784..91ae0bc 100644 --- a/include/secure_file.h +++ b/include/secure_file.h @@ -19,6 +19,7 @@ #include "common_types.h" #include "code_attributes.h" #include +#include #if defined (__cplusplus) extern "C"