diff options
author | Andrew Cagney <cagney@redhat.com> | 2003-02-07 00:27:31 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2003-02-07 00:27:31 +0000 |
commit | 0be6f5ac8a474537629f1faff149243e7d07c198 (patch) | |
tree | 4e38fe14a0ebab942f049be80c6f8f6c3952acca /gdb/linux-proc.c | |
parent | ffe68b5736236faa2abc83427a9edfab3fc93a9a (diff) | |
download | gdb-0be6f5ac8a474537629f1faff149243e7d07c198.tar.gz |
2003-02-06 Andrew Cagney <ac131313@redhat.com>
* linux-proc.c: Include "gdb_stat.h" instead of <sys/stat.h>.
* cp-valprint.c (cp_print_value_fields): Eliminate STREQN.
* jv-typeprint.c (java_type_print_base): Ditto.
* typeprint.c (typedef_print): Eliminate STREQ.
* cli/cli-script.c (define_command, define_command): Ditto.
* main.c (captured_main): Ditto.
* values.c (lookup_internalvar): Ditto.
* utils.c (safe_strerror, parse_escape): Eliminate assignment
within `if' conditional.
* linespec.c (decode_line_2): Ditto.
* cli/cli-dump.c (bfd_openr_with_cleanup): Ditto.
(bfd_openw_with_cleanup): Ditto.
Index: mi/ChangeLog
2003-02-06 Andrew Cagney <ac131313@redhat.com>
* mi-cmd-env.c: Include "gdb_stat.h" instead of <sys/stat.h>.
Diffstat (limited to 'gdb/linux-proc.c')
-rw-r--r-- | gdb/linux-proc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/linux-proc.c b/gdb/linux-proc.c index 2f43ae61f97..00383e9a6ee 100644 --- a/gdb/linux-proc.c +++ b/gdb/linux-proc.c @@ -23,7 +23,7 @@ #include "inferior.h" #include <sys/param.h> /* for MAXPATHLEN */ #include <sys/procfs.h> /* for elf_gregset etc. */ -#include <sys/stat.h> /* for struct stat */ +#include "gdb_stat.h" /* for struct stat */ #include <ctype.h> /* for isdigit */ #include <unistd.h> /* for open, pread64 */ #include <fcntl.h> /* for O_RDONLY */ |