From 51dd9eac435cd5176e90424403cd7decc3464621 Mon Sep 17 00:00:00 2001 From: Henrik Hautakoski Date: Thu, 13 Jan 2011 14:54:19 +0100 Subject: [PATCH] compat/string.h: Added header-guards --- src/compat/string.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/compat/string.h b/src/compat/string.h index ef96332..f146780 100644 --- a/src/compat/string.h +++ b/src/compat/string.h @@ -1,6 +1,11 @@ +#ifndef __COMPAT_STRING_H +#define __COMPAT_STRING_H + #include #ifdef NO_MEMRCHR extern void* memrchr(const void *, int, size_t); #endif + +#endif /* __COMPAT_STRING_H */