From 0d4bf9f802ec19af0a5ae2f5cc4dfafc5bbca48b Mon Sep 17 00:00:00 2001 From: Martin Piatka Date: Mon, 20 Oct 2025 15:30:41 +0200 Subject: [PATCH] pdb.h: Add missing include guard --- src/pdb.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/pdb.h b/src/pdb.h index 7fb30cbd0..ac4cfbb93 100644 --- a/src/pdb.h +++ b/src/pdb.h @@ -51,6 +51,8 @@ * $Date: 2009/12/11 15:29:39 $ * */ +#ifndef PDB_H_821e0154057b +#define PDB_H_821e0154057b #ifdef __cplusplus #include @@ -121,3 +123,4 @@ void pdb_iter_done(pdb_iter_t *it); } #endif +#endif // PDB_H_821e0154057b