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