From: Martin Mares Date: Wed, 23 May 2007 19:10:10 +0000 (+0200) Subject: Added a guard against multiple inclusion. X-Git-Tag: holmes-import~506^2~13^2~128 X-Git-Url: http://mj.ucw.cz/gitweb/?a=commitdiff_plain;h=2a66c8120bf99a1448e43a1c16996714d177f339;p=libucw.git Added a guard against multiple inclusion. --- diff --git a/lib/stkstring.h b/lib/stkstring.h index dfead5ac..a874344c 100644 --- a/lib/stkstring.h +++ b/lib/stkstring.h @@ -8,6 +8,9 @@ * of the GNU Lesser General Public License. */ +#ifndef _UCW_STKSTRING_H +#define _UCW_STKSTRING_H + #include #include #include @@ -30,3 +33,5 @@ uns stk_printf_internal(const char *x, ...) FORMAT_CHECK(printf,1,2); uns stk_vprintf_internal(const char *x, va_list args); void stk_hexdump_internal(char *dst, byte *src, uns n); void stk_fsize_internal(char *dst, u64 size); + +#endif