oconfig.c: Fix compiler warning.
[collection4.git] / aux_types.h
1 #ifndef AUX_TYPES_H
2 #define AUX_TYPES_H 1
3
4 struct statement_list_s
5 {
6         oconfig_item_t *statement;
7         int             statement_num;
8 };
9 typedef struct statement_list_s statement_list_t;
10
11 struct argument_list_s
12 {
13         oconfig_value_t *argument;
14         int              argument_num;
15 };
16 typedef struct argument_list_s argument_list_t;
17
18 #endif /* AUX_TYPES_H */