summaryrefslogtreecommitdiffstats
path: root/contrib/binutils/include/libiberty.h
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/binutils/include/libiberty.h')
-rw-r--r--contrib/binutils/include/libiberty.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/contrib/binutils/include/libiberty.h b/contrib/binutils/include/libiberty.h
index d15a98d..951e156 100644
--- a/contrib/binutils/include/libiberty.h
+++ b/contrib/binutils/include/libiberty.h
@@ -10,6 +10,10 @@
#ifndef LIBIBERTY_H
#define LIBIBERTY_H
+#ifdef __cplusplus
+extern "C" {
+#endif
+
#include "ansidecl.h"
/* Build an argument vector from a string. Allocates memory using
@@ -21,6 +25,12 @@ extern char **buildargv PARAMS ((char *));
extern void freeargv PARAMS ((char **));
+/* Duplicate an argument vector. Allocates memory using malloc. Use
+ freeargv to free the vector. */
+
+extern char **dupargv PARAMS ((char **));
+
+
/* Return the last component of a path name. Note that we can't use a
prototype here because the parameter is declared inconsistently
across different systems, sometimes as "char *" and sometimes as
@@ -141,4 +151,26 @@ extern void hex_init PARAMS ((void));
the argument being performed exactly once. */
#define hex_value(c) (_hex_value[(unsigned char) (c)])
+/* Definitions used by the pexecute routine. */
+
+#define PEXECUTE_FIRST 1
+#define PEXECUTE_LAST 2
+#define PEXECUTE_ONE (PEXECUTE_FIRST + PEXECUTE_LAST)
+#define PEXECUTE_SEARCH 4
+#define PEXECUTE_VERBOSE 8
+
+/* Execute a program. */
+
+extern int pexecute PARAMS ((const char *, char * const *, const char *,
+ const char *, char **, char **, int));
+
+/* Wait for pexecute to finish. */
+
+extern int pwait PARAMS ((int, int *, int));
+
+#ifdef __cplusplus
+}
+#endif
+
+
#endif /* ! defined (LIBIBERTY_H) */
OpenPOWER on IntegriCloud