summaryrefslogtreecommitdiff
path: root/gdb/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/main.c')
-rw-r--r--gdb/main.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/gdb/main.c b/gdb/main.c
index feefaa5428f..20fd73bdcb7 100644
--- a/gdb/main.c
+++ b/gdb/main.c
@@ -62,6 +62,10 @@ GDB_FILE *gdb_stderr;
GDB_FILE *gdb_stdlog;
GDB_FILE *gdb_stdtarg;
+/* Used to initialize error() - defined in utils.c */
+
+extern void error_init (void);
+
/* Whether to enable writing into executable and core files */
extern int write_files;
@@ -169,6 +173,9 @@ main (argc, argv)
gdb_stdtarg = gdb_stderr; /* for moment */
#endif
+ /* initialize error() */
+ error_init ();
+
/* Parse arguments and options. */
{
int c;