diff options
author | Mark Mitchell <mark@codesourcery.com> | 2005-09-26 21:02:57 +0000 |
---|---|---|
committer | Mark Mitchell <mark@codesourcery.com> | 2005-09-26 21:02:57 +0000 |
commit | dbdc82aa7146042b14dbae369a074e5bf41b4aa8 (patch) | |
tree | aaef08a9dca4d0d0d5af66e7c4f9f6864e73dc95 /include/libiberty.h | |
parent | 6c22c79f73046ceed5c2f3648405b3db3c81ce76 (diff) | |
download | cygnal-dbdc82aa7146042b14dbae369a074e5bf41b4aa8.tar.gz cygnal-dbdc82aa7146042b14dbae369a074e5bf41b4aa8.tar.bz2 cygnal-dbdc82aa7146042b14dbae369a074e5bf41b4aa8.zip |
* 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.
* Makefile.in: Regenerated.
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 6fb5e19cc..c264cb2ab 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 |