summaryrefslogtreecommitdiff
path: root/array.h
diff options
context:
space:
mode:
authorChet Ramey <chet.ramey@case.edu>2020-09-09 15:25:32 -0400
committerChet Ramey <chet.ramey@case.edu>2020-09-09 15:25:32 -0400
commit3eb0018e75b74bb886df7fba4b1712529ce7258f (patch)
tree13b53713ef8f483a82295324e314da48b59c9346 /array.h
parent712f80b0a49c3a0227d0b52bff5e0b763747697e (diff)
downloadbash-5.1-beta.tar.gz
bash-5.1 beta releasebash-5.1-beta
Diffstat (limited to 'array.h')
-rw-r--r--array.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/array.h b/array.h
index a610de7c..fe218470 100644
--- a/array.h
+++ b/array.h
@@ -84,7 +84,7 @@ extern WORD_LIST *array_keys_to_word_list PARAMS((ARRAY *));
extern ARRAY *array_assign_list PARAMS((ARRAY *, WORD_LIST *));
-extern char **array_to_argv PARAMS((ARRAY *));
+extern char **array_to_argv PARAMS((ARRAY *, int *));
extern char *array_to_kvpair PARAMS((ARRAY *, int));
extern char *array_to_assign PARAMS((ARRAY *, int));
@@ -121,7 +121,7 @@ extern ARRAY *array_from_string PARAMS((char *, char *));
#define ALL_ELEMENT_SUB(c) ((c) == '@' || (c) == '*')
-/* In eval.c, but uses ARRAY_ELEMENT * */
-extern int execute_array_command PARAMS((ARRAY_ELEMENT *, void *));
+/* In eval.c, but uses ARRAY * */
+extern int execute_array_command PARAMS((ARRAY *, void *));
#endif /* _ARRAY_H_ */