Module: kamailio Branch: 5.8 Commit: 6721fb7aae373d42c4059a630fc79815d2f709b7 URL: https://github.com/kamailio/kamailio/commit/6721fb7aae373d42c4059a630fc79815...
Author: Xenofon Karamanos 22965395+xkaraman@users.noreply.github.com Committer: Xenofon Karamanos 22965395+xkaraman@users.noreply.github.com Date: 2024-02-27T14:25:16Z
file_out: Add header guards
(cherry picked from commit 967fb30b14fb63bcb396956f9e9ed0ca92028682)
---
Modified: src/modules/file_out/types.h
---
Diff: https://github.com/kamailio/kamailio/commit/6721fb7aae373d42c4059a630fc79815... Patch: https://github.com/kamailio/kamailio/commit/6721fb7aae373d42c4059a630fc79815...
---
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