From 91450a8a3b3112066fd6d266a6c492365c9d8d61 Mon Sep 17 00:00:00 2001 From: "Peter S. Mazinger" Date: Sun, 13 Mar 2011 00:36:00 +0100 Subject: parser_config.[ch]: remove duplicated hidden functions Signed-off-by: Peter S. Mazinger Signed-off-by: Bernhard Reutner-Fischer --- include/internal/parse_config.h | 3 --- 1 file changed, 3 deletions(-) (limited to 'include/internal') 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 */ -- cgit v1.2.3