From 4bee3b821a3f18a15c890a46b17ef3366818f930 Mon Sep 17 00:00:00 2001 From: heck Date: Wed, 9 Mar 2022 21:04:36 +0100 Subject: [PATCH] maybe add some include guards --- examples/libc99/libc99.h | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/examples/libc99/libc99.h b/examples/libc99/libc99.h index e641aca..3437999 100644 --- a/examples/libc99/libc99.h +++ b/examples/libc99/libc99.h @@ -4,6 +4,9 @@ // * c-string // * struct // Those are all considered POD-types +#ifndef LIBPEPDATATYPES_LIBC99_H +#define LIBPEPDATATYPES_LIBC99_H + #ifdef __cplusplus extern "C" { #endif @@ -34,4 +37,6 @@ extern "C" { void free_test_struct(Test_struct1* c_struct); #ifdef __cplusplus } -#endif \ No newline at end of file +#endif + +#endif