diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2010-08-18 16:03:23 +0200 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2010-08-19 19:08:21 +0200 |
commit | 39da92a8c926ce73b5b3792bf8c9da3cff6f4d64 (patch) | |
tree | cd5446b5ef2a643023400d1bdb7a0744d9014fd7 /include | |
parent | c78e53b6a4e15b50aca2b666a49b146bf380d927 (diff) |
add header guard
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/internal/parse_config.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/internal/parse_config.h b/include/internal/parse_config.h index e5241105c..47a74fa75 100644 --- a/include/internal/parse_config.h +++ b/include/internal/parse_config.h @@ -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 */ |