diff options
author | mmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-09-26 20:55:10 +0000 |
---|---|---|
committer | mmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-09-26 20:55:10 +0000 |
commit | bab0d4c5d5c8d36bf5c241446cba57d86435b9bc (patch) | |
tree | 296846fb789e3b49e2547f212dd678d9e57512c2 /include/libiberty.h | |
parent | fd5a251845470c863d1a5c50cae5caf12118a3d8 (diff) | |
download | gcc-bab0d4c5d5c8d36bf5c241446cba57d86435b9bc.tar.gz |
* libiberty.h (expandargv): New function.
* argv.c (safe-ctype.h): Include it.
(ISBLANK): Remove.
(stdio.h): Include.
(buildargv): Use ISSPACE instead of ISBLANK.
(expandargv): New function.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@104664 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'include/libiberty.h')
-rw-r--r-- | include/libiberty.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/libiberty.h b/include/libiberty.h index 6fb5e19ccd5..c264cb2ab0e 100644 --- a/include/libiberty.h +++ b/include/libiberty.h @@ -82,6 +82,9 @@ extern void freeargv (char **); extern char **dupargv (char **) ATTRIBUTE_MALLOC; +/* Expand "@file" arguments in argv. */ + +extern void expandargv PARAMS ((int *, char ***)); /* Return the last component of a path name. Note that we can't use a prototype here because the parameter is declared inconsistently |