]> mj.ucw.cz Git - libucw.git/commitdiff
Added a guard against multiple inclusion.
authorMartin Mares <mj@ucw.cz>
Wed, 23 May 2007 19:10:10 +0000 (21:10 +0200)
committerMartin Mares <mj@ucw.cz>
Wed, 23 May 2007 19:10:10 +0000 (21:10 +0200)
lib/stkstring.h

index dfead5acb3bc831cd955f117144ea135dfb6318f..a874344c1f7b1fd1d3569457207bc4854be2410f 100644 (file)
@@ -8,6 +8,9 @@
  *     of the GNU Lesser General Public License.
  */
 
+#ifndef _UCW_STKSTRING_H
+#define _UCW_STKSTRING_H
+
 #include <alloca.h>
 #include <string.h>
 #include <stdio.h>
@@ -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