summaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2004-07-17 13:58:56 +0000
committerAndrew Cagney <cagney@redhat.com>2004-07-17 13:58:56 +0000
commit1b89295f2fcdbdf68734266e61e2ff4a052bcb82 (patch)
treea406df00f8b0c42196180aede869ee97dc8819dc /gdb
parentd5c560f7de4a7866da139d8aaf9f8e0d466cf93a (diff)
downloadbinutils-gdb-1b89295f2fcdbdf68734266e61e2ff4a052bcb82.tar.gz
2004-07-17 Andrew Cagney <cagney@gnu.org>
* hppa-linux-nat.c: Do not include <string.h>. (supply_fpregset): Remove "register" attribute.
Diffstat (limited to 'gdb')
-rw-r--r--gdb/ChangeLog3
-rw-r--r--gdb/hppa-linux-nat.c3
2 files changed, 4 insertions, 2 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 646717b5f9b..823a2bd6180 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,5 +1,8 @@
2004-07-17 Andrew Cagney <cagney@gnu.org>
+ * hppa-linux-nat.c: Do not include <string.h>.
+ (supply_fpregset): Remove "register" attribute.
+
* solib-frv.c (fetch_loadmap): Use xfree, not free.
2004-07-17 Mark Kettenis <kettenis@gnu.org>
diff --git a/gdb/hppa-linux-nat.c b/gdb/hppa-linux-nat.c
index c15e1ab7122..fc901ace3bd 100644
--- a/gdb/hppa-linux-nat.c
+++ b/gdb/hppa-linux-nat.c
@@ -26,7 +26,6 @@
#include <sys/procfs.h>
#include <sys/ptrace.h>
-#include <string.h>
#include <linux/version.h>
#if LINUX_VERSION_CODE < KERNEL_VERSION(2,5,43)
@@ -342,7 +341,7 @@ fill_gregset (gdb_gregset_t *gregsetp, int regno)
void
supply_fpregset (gdb_fpregset_t *fpregsetp)
{
- register int regi;
+ int regi;
char *from;
for (regi = 0; regi <= 31; regi++)