import gdb-1999-10-04 snapshot

This commit is contained in:
Jason Molenda
1999-10-05 23:13:56 +00:00
parent 3e9c42873e
commit 2acceee218
112 changed files with 2316 additions and 855 deletions

View File

@ -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;