diff options
Diffstat (limited to 'gdb/mi')
-rw-r--r-- | gdb/mi/mi-cmds.c | 4 | ||||
-rw-r--r-- | gdb/mi/mi-console.c | 4 | ||||
-rw-r--r-- | gdb/mi/mi-getopt.c | 4 | ||||
-rw-r--r-- | gdb/mi/mi-parse.c | 4 |
4 files changed, 8 insertions, 8 deletions
diff --git a/gdb/mi/mi-cmds.c b/gdb/mi/mi-cmds.c index ff8b537..64ad4f6 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 b27d14e..dc9a217 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 7436c5f..74cbd67 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 41e0351..73e7bcb 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))) |