From 1d17e047b77240f1e23d7af2a1c20d47ce3b6bce Mon Sep 17 00:00:00 2001 From: Robby Zambito Date: Wed, 6 Mar 2024 20:15:40 -0500 Subject: [PATCH] Add header guard to libguestfs-inspect.h --- libguestfs-inspect.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/libguestfs-inspect.h b/libguestfs-inspect.h index 3eebd2e..d052c27 100644 --- a/libguestfs-inspect.h +++ b/libguestfs-inspect.h @@ -1,3 +1,6 @@ +#ifndef LIBGUESTFS_INSPECT_H +#define LIBGUESTFS_INSPECT_H + #include enum guestfs_inspect_command_const { @@ -131,3 +134,5 @@ static void command_destroy(struct guestfs_inpsect_command **c) { free(*c); *c = NULL; } + +#endif // LIBGUESTFS_INSPECT_H