diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2011-03-13 00:36:00 +0100 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2012-06-15 14:00:22 +0200 |
commit | 91450a8a3b3112066fd6d266a6c492365c9d8d61 (patch) | |
tree | ee31ef7fe9338e07e8327a7c253045502065f77d /include/internal | |
parent | 27fbcf79bc05e63f8687e61ce83fb29c77683b4a (diff) |
parser_config.[ch]: remove duplicated hidden functions
Signed-off-by: Peter S. Mazinger <ps.m@gmx.net>
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'include/internal')
-rw-r--r-- | include/internal/parse_config.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/include/internal/parse_config.h b/include/internal/parse_config.h index ebfb87e5f..69be0cbca 100644 --- a/include/internal/parse_config.h +++ b/include/internal/parse_config.h @@ -46,12 +46,9 @@ typedef struct parser_t { } parser_t; parser_t* config_open(const char *filename) FAST_FUNC attribute_hidden; -libc_hidden_proto(config_open) int config_read(parser_t *parser, char ***tokens, unsigned flags, const char *delims) FAST_FUNC attribute_hidden; -libc_hidden_proto(config_read) #define config_read(parser, tokens, max, min, str, flags) \ config_read(parser, tokens, ((flags) | (((min) & 0xFF) << 8) | ((max) & 0xFF)), str) void config_close(parser_t *parser) FAST_FUNC attribute_hidden; -libc_hidden_proto(config_close) #endif /* __INTERNAL_PARSE_CONFIG_H */ |