summaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
authorDavid Smith <dsmith@redhat.com>2001-01-31 15:46:36 +0000
committerDavid Smith <dsmith@redhat.com>2001-01-31 15:46:36 +0000
commit06a053af180af8937873fd2892e6b594f0e42b3b (patch)
treed77b89483ab53ff62d243e68507c2a5e50e1ca9e /gdb
parentf543652900761f8bbe6158911a20374a2feef6ef (diff)
downloadgdb-06a053af180af8937873fd2892e6b594f0e42b3b.tar.gz
2001-01-31 David Smith <dsmith@redhat.com>
* event-loop.c: Change inclusion of string.h to gdb_string.h and updated the copyright notice. * ser-pipe.c: Ditto. * mi/mi-cmds.c: Ditto. * mi/mi-console.c: Ditto. * mi/mi-getopt.c: Ditto. * mi/mi-parse.c: Ditto.
Diffstat (limited to 'gdb')
-rw-r--r--gdb/ChangeLog10
-rw-r--r--gdb/event-loop.c4
-rw-r--r--gdb/mi/mi-cmds.c4
-rw-r--r--gdb/mi/mi-console.c4
-rw-r--r--gdb/mi/mi-getopt.c4
-rw-r--r--gdb/mi/mi-parse.c4
-rw-r--r--gdb/ser-pipe.c4
7 files changed, 22 insertions, 12 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index cd21650a2a3..5d52559ef35 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,5 +1,15 @@
2001-01-31 David Smith <dsmith@redhat.com>
+ * event-loop.c: Change inclusion of string.h to gdb_string.h and
+ updated the copyright notice.
+ * ser-pipe.c: Ditto.
+ * mi/mi-cmds.c: Ditto.
+ * mi/mi-console.c: Ditto.
+ * mi/mi-getopt.c: Ditto.
+ * mi/mi-parse.c: Ditto.
+
+2001-01-31 David Smith <dsmith@redhat.com>
+
* MAINTAINERS: Add David Smith to Write After Approval list.
Tue Jan 30 15:43:08 2001 Andrew Cagney <cagney@cygnus.com>
diff --git a/gdb/event-loop.c b/gdb/event-loop.c
index ad7ba66f87f..1ae2a82e1a0 100644
--- a/gdb/event-loop.c
+++ b/gdb/event-loop.c
@@ -1,5 +1,5 @@
/* Event loop machinery for GDB, the GNU debugger.
- Copyright 1999 Free Software Foundation, Inc.
+ Copyright 1999, 2001 Free Software Foundation, Inc.
Written by Elena Zannoni <ezannoni@cygnus.com> of Cygnus Solutions.
This file is part of GDB.
@@ -33,7 +33,7 @@
#endif
#include <sys/types.h>
-#include <string.h>
+#include "gdb_string.h"
#include <errno.h>
#include <setjmp.h>
#include <sys/time.h>
diff --git a/gdb/mi/mi-cmds.c b/gdb/mi/mi-cmds.c
index ff8b53772de..64ad4f6ee29 100644
--- a/gdb/mi/mi-cmds.c
+++ b/gdb/mi/mi-cmds.c
@@ -1,5 +1,5 @@
/* MI Command Set.
- Copyright (C) 2000, Free Software Foundation, Inc.
+ Copyright (C) 2000, 2001 Free Software Foundation, Inc.
Contributed by Cygnus Solutions (a Red Hat company).
This file is part of GDB.
@@ -22,7 +22,7 @@
#include "defs.h"
#include "top.h"
#include "mi-cmds.h"
-#include <string.h>
+#include "gdb_string.h"
extern void _initialize_mi_cmds (void);
struct mi_cmd;
diff --git a/gdb/mi/mi-console.c b/gdb/mi/mi-console.c
index b27d14ea746..dc9a217d75c 100644
--- a/gdb/mi/mi-console.c
+++ b/gdb/mi/mi-console.c
@@ -1,5 +1,5 @@
/* MI Console code.
- Copyright (C) 2000, Free Software Foundation, Inc.
+ Copyright (C) 2000, 2001 Free Software Foundation, Inc.
Contributed by Cygnus Solutions (a Red Hat company).
This file is part of GDB.
@@ -21,7 +21,7 @@
#include "defs.h"
#include "mi-console.h"
-#include <string.h>
+#include "gdb_string.h"
/* Convenience macro for allocting typesafe memory. */
diff --git a/gdb/mi/mi-getopt.c b/gdb/mi/mi-getopt.c
index 7436c5fa81b..74cbd673e7d 100644
--- a/gdb/mi/mi-getopt.c
+++ b/gdb/mi/mi-getopt.c
@@ -1,5 +1,5 @@
/* MI Command Set - MI Option Parser.
- Copyright (C) 2000, Free Software Foundation, Inc.
+ Copyright (C) 2000, 2001 Free Software Foundation, Inc.
Contributed by Cygnus Solutions (a Red Hat company).
This file is part of GDB.
@@ -21,7 +21,7 @@
#include "defs.h"
#include "mi-getopt.h"
-#include "string.h"
+#include "gdb_string.h"
int
mi_getopt (const char *prefix,
diff --git a/gdb/mi/mi-parse.c b/gdb/mi/mi-parse.c
index 41e0351da22..73e7bcb729c 100644
--- a/gdb/mi/mi-parse.c
+++ b/gdb/mi/mi-parse.c
@@ -1,5 +1,5 @@
/* MI Command Set - MI parser.
- Copyright (C) 2000, Free Software Foundation, Inc.
+ Copyright (C) 2000, 2001 Free Software Foundation, Inc.
Contributed by Cygnus Solutions (a Red Hat company).
This file is part of GDB.
@@ -24,7 +24,7 @@
#include "mi-parse.h"
#include <ctype.h>
-#include <string.h>
+#include "gdb_string.h"
#undef XMALLOC
#define XMALLOC(TYPE) ((TYPE*) xmalloc (sizeof (TYPE)))
diff --git a/gdb/ser-pipe.c b/gdb/ser-pipe.c
index a172e710582..41fb083d5ce 100644
--- a/gdb/ser-pipe.c
+++ b/gdb/ser-pipe.c
@@ -1,5 +1,5 @@
/* Serial interface for a pipe to a separate program
- Copyright 1999 Free Software Foundation, Inc.
+ Copyright 1999, 2001 Free Software Foundation, Inc.
Contributed by Cygnus Solutions.
@@ -31,7 +31,7 @@
#include <sys/socket.h>
#include <sys/time.h>
#include <fcntl.h>
-#include <string.h>
+#include "gdb_string.h"
#include "signals.h"