summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authormmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4>2005-09-26 20:55:10 +0000
committermmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4>2005-09-26 20:55:10 +0000
commitbab0d4c5d5c8d36bf5c241446cba57d86435b9bc (patch)
tree296846fb789e3b49e2547f212dd678d9e57512c2 /include
parentfd5a251845470c863d1a5c50cae5caf12118a3d8 (diff)
downloadgcc-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')
-rw-r--r--include/ChangeLog4
-rw-r--r--include/libiberty.h3
2 files changed, 7 insertions, 0 deletions
diff --git a/include/ChangeLog b/include/ChangeLog
index c0c22b548c2..bdd47bb98c2 100644
--- a/include/ChangeLog
+++ b/include/ChangeLog
@@ -1,3 +1,7 @@
+2005-09-26 Mark Mitchell <mark@codesourcery.com>
+
+ * libiberty.h (expandargv): New function.
+
2005-08-17 Mark Kettenis <kettenis@gnu.org>
* floatformat.h (struct floatformat): Change type of large
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