Module: kamailio
Branch: master
Commit: 967fb30b14fb63bcb396956f9e9ed0ca92028682
URL:
https://github.com/kamailio/kamailio/commit/967fb30b14fb63bcb396956f9e9ed0c…
Author: Xenofon Karamanos <22965395+xkaraman(a)users.noreply.github.com>
Committer: Xenofon Karamanos <22965395+xkaraman(a)users.noreply.github.com>
Date: 2024-02-27T15:18:57+02:00
file_out: Add header guards
---
Modified: src/modules/file_out/types.h
---
Diff:
https://github.com/kamailio/kamailio/commit/967fb30b14fb63bcb396956f9e9ed0c…
Patch:
https://github.com/kamailio/kamailio/commit/967fb30b14fb63bcb396956f9e9ed0c…
---
diff --git a/src/modules/file_out/types.h b/src/modules/file_out/types.h
index 782a6bcb31d..641da360dad 100644
--- a/src/modules/file_out/types.h
+++ b/src/modules/file_out/types.h
@@ -18,6 +18,9 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
+#ifndef _FO_TYPES_H
+#define _FO_TYPES_H
+
#include "../../core/locking.h"
#include "../../core/pvar.h"
@@ -61,3 +64,5 @@ typedef struct fo_file_properties
} fo_file_properties_t;
int fo_file_properties_destroy(fo_file_properties_t *fp);
+
+#endif