Create new file regcache.h. Update all uses.
[deliverable/binutils-gdb.git] / gdb / ppc-linux-nat.c
index 7388254aa4c67bbad5309664adb0225e2b97e95e..66e6e831a77001783cbed6f31318723f4716297f 100644 (file)
@@ -1,5 +1,6 @@
 /* PPC linux native support.
-   Copyright (C) 1988, 1989, 1991, 1992, 1994, 1996 Free Software Foundation, Inc.
+   Copyright 1988, 1989, 1991, 1992, 1994, 1996, 2001 Free Software
+   Foundation, Inc.
 
    This file is part of GDB.
 
@@ -21,6 +22,7 @@
 #include "frame.h"
 #include "inferior.h"
 #include "gdbcore.h"
+#include "regcache.h"
 
 #include <sys/types.h>
 #include <sys/param.h>
@@ -58,7 +60,7 @@ ppc_register_u_addr (int ustart, int regnum)
 }
 
 void
-supply_gregset (gregset_t * gregsetp)
+supply_gregset (gdb_gregset_t *gregsetp)
 {
   int regi;
   register greg_t *regp = (greg_t *) gregsetp;
@@ -71,7 +73,7 @@ supply_gregset (gregset_t * gregsetp)
 }
 
 void
-fill_gregset (gregset_t *gregsetp, int regno)
+fill_gregset (gdb_gregset_t *gregsetp, int regno)
 {
   int regi;
   greg_t *regp = (greg_t *) gregsetp;
@@ -93,7 +95,7 @@ fill_gregset (gregset_t *gregsetp, int regno)
 }
 
 void
-supply_fpregset (fpregset_t * fpregsetp)
+supply_fpregset (gdb_fpregset_t * fpregsetp)
 {
   int regi;
   for (regi = 0; regi < 32; regi++)
@@ -108,7 +110,7 @@ supply_fpregset (fpregset_t * fpregsetp)
    them all. */
 
 void
-fill_fpregset (fpregset_t *fpregsetp, int regno)
+fill_fpregset (gdb_fpregset_t *fpregsetp, int regno)
 {
   int regi;
   char *to;
This page took 0.023855 seconds and 4 git commands to generate.