Skip to content

Commit

Permalink
bug: Adding missing stdarg.h header
Browse files Browse the repository at this point in the history
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 <tyler.erickson@seagate.com>
  • Loading branch information
vonericsen committed Oct 30, 2024
1 parent 9862e3d commit 49a0ae7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions include/io_utils.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
#include "common_types.h"
#include "code_attributes.h"
#include <stdio.h>
#include <stdarg.h>

#if defined (__cplusplus)
extern "C"
Expand Down
1 change: 1 addition & 0 deletions include/secure_file.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
#include "common_types.h"
#include "code_attributes.h"
#include <stdio.h>
#include <stdarg.h>

#if defined (__cplusplus)
extern "C"
Expand Down

0 comments on commit 49a0ae7

Please sign in to comment.