diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/libbb.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/libbb.h b/include/libbb.h index 2cac7e60c..953bec334 100644 --- a/include/libbb.h +++ b/include/libbb.h | |||
@@ -1184,8 +1184,9 @@ enum { | |||
1184 | }; | 1184 | }; |
1185 | typedef struct parser_t { | 1185 | typedef struct parser_t { |
1186 | FILE *fp; | 1186 | FILE *fp; |
1187 | char *line; | ||
1188 | char *data; | 1187 | char *data; |
1188 | char *line, *nline; | ||
1189 | size_t line_alloc, nline_alloc; | ||
1189 | int lineno; | 1190 | int lineno; |
1190 | } parser_t; | 1191 | } parser_t; |
1191 | parser_t* config_open(const char *filename) FAST_FUNC; | 1192 | parser_t* config_open(const char *filename) FAST_FUNC; |