OSDN Git Service

add header guard
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Wed, 18 Aug 2010 14:03:23 +0000 (16:03 +0200)
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Thu, 19 Aug 2010 17:08:21 +0000 (19:08 +0200)
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
include/internal/parse_config.h

index e524110..47a74fa 100644 (file)
@@ -7,6 +7,8 @@
  * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
  * Also for use in uClibc (http://uclibc.org/) licensed under LGPLv2.1 or later.
  */
+#ifndef __INTERNAL_PARSE_CONFIG_H
+#define __INTERNAL_PARSE_CONFIG_H
 
 #include <stdio.h>
 #ifndef FAST_FUNC
@@ -48,3 +50,4 @@ int config_read(parser_t *parser, char ***tokens, unsigned flags, const char *de
        config_read(parser, tokens, ((flags) | (((min) & 0xFF) << 8) | ((max) & 0xFF)), str)
 void config_close(parser_t *parser) FAST_FUNC attribute_hidden;
 
+#endif /* __INTERNAL_PARSE_CONFIG_H */