From 2a66c8120bf99a1448e43a1c16996714d177f339 Mon Sep 17 00:00:00 2001 From: Martin Mares Date: Wed, 23 May 2007 21:10:10 +0200 Subject: [PATCH] Added a guard against multiple inclusion. --- lib/stkstring.h | 5 +++++ 1 file changed, 5 insertions(+) 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 -- 2.39.2