aboutsummaryrefslogtreecommitdiffstats
path: root/list.c
diff options
context:
space:
mode:
authorJari Aalto <jari.aalto@cante.net>2001-11-13 17:56:06 +0000
committerJari Aalto <jari.aalto@cante.net>2009-09-12 16:46:54 +0000
commitf73dda092b33638d2d5e9c35375f687a607b5403 (patch)
treef21584e70a444d6a1ecba0fb5e2cf79e8cce91db /list.c
parent28ef6c316f1aff914bb95ac09787a3c83c1815fd (diff)
downloadandroid_external_bash-f73dda092b33638d2d5e9c35375f687a607b5403.tar.gz
android_external_bash-f73dda092b33638d2d5e9c35375f687a607b5403.tar.bz2
android_external_bash-f73dda092b33638d2d5e9c35375f687a607b5403.zip
Imported from ../bash-2.05a.tar.gz.
Diffstat (limited to 'list.c')
-rw-r--r--list.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/list.c b/list.c
index 2f075c0..e1fc9b4 100644
--- a/list.c
+++ b/list.c
@@ -38,7 +38,7 @@ GENERIC_LIST global_error_list;
void
map_over_list (list, function)
GENERIC_LIST *list;
- Function *function;
+ sh_glist_func_t *function;
{
for ( ; list; list = list->next)
(*function) (list);
@@ -48,7 +48,7 @@ map_over_list (list, function)
void
map_over_words (words, function)
WORD_LIST *words;
- Function *function;
+ sh_icpfunc_t *function;
{
for ( ; words; words = words->next)
(*function) (words->word->word);