Updated to match trunk/uClibc/extra/config as of r10132, and thus
Linux 2.6.11.
This commit is contained in:
parent
2bf88a891f
commit
bae38db8e4
23 changed files with 905 additions and 490 deletions
|
@ -1087,3 +1087,13 @@ void expr_fprint(struct expr *e, FILE *out)
|
|||
{
|
||||
expr_print(e, expr_print_file_helper, out, E_NONE);
|
||||
}
|
||||
|
||||
static void expr_print_gstr_helper(void *data, const char *str)
|
||||
{
|
||||
str_append((struct gstr*)data, str);
|
||||
}
|
||||
|
||||
void expr_gstr_print(struct expr *e, struct gstr *gs)
|
||||
{
|
||||
expr_print(e, expr_print_gstr_helper, gs, E_NONE);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue