aboutsummaryrefslogtreecommitdiff
path: root/gdb/main.h
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2013-04-06 06:52:06 +0000
committerEli Zaretskii <eliz@gnu.org>2013-04-06 06:52:06 +0000
commitd9ac066415a91fee34d4b4f9646189e740a5e42b (patch)
tree153525a237ce5ae0cf140fb34d6e958fe2ea0db4 /gdb/main.h
parent198f1157c95708c10f213c3b5146a25d542b9775 (diff)
downloadgdb-d9ac066415a91fee34d4b4f9646189e740a5e42b.zip
gdb-d9ac066415a91fee34d4b4f9646189e740a5e42b.tar.gz
gdb-d9ac066415a91fee34d4b4f9646189e740a5e42b.tar.bz2
Unbreak Windows-hosted cross debugger builds.
* windows-nat.c (windows_get_absolute_argv0): Move from here... * mingw-hdep.c (windows_get_absolute_argv0): ...to here. Include main.h. * windows-nat.h (windows_get_absolute_argv0): Move prototype from here... * main.h (windows_get_absolute_argv0): ...to here.
Diffstat (limited to 'gdb/main.h')
-rw-r--r--gdb/main.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/gdb/main.h b/gdb/main.h
index 49b64ee..a5260b1 100644
--- a/gdb/main.h
+++ b/gdb/main.h
@@ -36,4 +36,10 @@ extern int return_child_result_value;
extern int batch_silent;
extern int batch_flag;
+/* From mingw-hdep.c, used by main.c. */
+
+/* Return argv[0] in absolute form, if possible, or ARGV0 if not. The
+ return value is in malloc'ed storage. */
+extern char *windows_get_absolute_argv0 (const char *argv0);
+
#endif