logswan

Fast Web log analyzer using probabilistic data structures
Log | Files | Refs | README | LICENSE

commit 4a9532b0b3552f462cf9ff25570f381e838c9151
parent 99f56cef79cb6182dc47db3f14b8542bd3a2191b
Author: Frederic Cambus <fred@statdns.com>
Date:   Sun,  9 Dec 2018 23:55:44 +0100

Adding #include guard in compat header file

Diffstat:
Mcompat/compat.h | 5+++++
1 file changed, 5 insertions(+), 0 deletions(-)

diff --git a/compat/compat.h b/compat/compat.h @@ -1,3 +1,6 @@ +#ifndef COMPAT_H +#define COMPAT_H + #ifndef HAVE_PLEDGE #include "pledge.h" #endif @@ -17,3 +20,5 @@ } \ } while (0) #endif + +#endif /* COMPAT_H */