* aix386-core.c: Remove use of PTR and PARAMS macros.
[deliverable/binutils-gdb.git] / bfd / ptrace-core.c
index 77eaaeb46a1a51d5c81247150cab71dd2361f5ef..9f6ffdf9cb5103dc766abce82974a2f1ffb36422 100644 (file)
@@ -1,6 +1,6 @@
 /* BFD backend for core files which use the ptrace_user structure
    Copyright 1993, 1994, 1995, 1996, 1998, 1999, 2001, 2002, 2003, 2004,
-   2005, 2006, 2007  Free Software Foundation, Inc.
+   2005, 2006, 2007, 2012  Free Software Foundation, Inc.
    The structure of this file is based on trad-core.c written by John Gilmore
    of Cygnus Support.
    Modified to work with the ptrace_user structure by Kevin A. Buettner.
 #include <sys/ptrace.h>
 
 struct trad_core_struct
-  {
-    asection *data_section;
-    asection *stack_section;
-    asection *reg_section;
-    struct ptrace_user u;
-  };
+{
+  asection *data_section;
+  asection *stack_section;
+  asection *reg_section;
+  struct ptrace_user u;
+};
 
-#define core_upage(bfd) (&((bfd)->tdata.trad_core_data->u))
-#define core_datasec(bfd) ((bfd)->tdata.trad_core_data->data_section)
+#define core_upage(bfd)  (&((bfd)->tdata.trad_core_data->u))
+#define core_datasec(bfd)  ((bfd)->tdata.trad_core_data->data_section)
 #define core_stacksec(bfd) ((bfd)->tdata.trad_core_data->stack_section)
-#define core_regsec(bfd) ((bfd)->tdata.trad_core_data->reg_section)
+#define core_regsec(bfd)   ((bfd)->tdata.trad_core_data->reg_section)
 
 /* forward declarations */
 
-const bfd_target *ptrace_unix_core_file_p PARAMS ((bfd *abfd));
-char * ptrace_unix_core_file_failing_command PARAMS ((bfd *abfd));
-int ptrace_unix_core_file_failing_signal PARAMS ((bfd *abfd));
+const bfd_target *ptrace_unix_core_file_p (bfd *abfd);
+char * ptrace_unix_core_file_failing_command (bfd *abfd);
+int ptrace_unix_core_file_failing_signal (bfd *abfd);
 #define ptrace_unix_core_file_matches_executable_p generic_core_file_matches_executable_p
 #define ptrace_unix_core_file_pid _bfd_nocore_core_file_pid
-static void swap_abort PARAMS ((void));
+static void swap_abort (void);
 
 const bfd_target *
-ptrace_unix_core_file_p (abfd)
-     bfd *abfd;
-
+ptrace_unix_core_file_p (bfd *abfd)
 {
   int val;
   struct ptrace_user u;
@@ -137,10 +135,10 @@ ptrace_unix_core_file_p (abfd)
 }
 
 char *
-ptrace_unix_core_file_failing_command (abfd)
-     bfd *abfd;
+ptrace_unix_core_file_failing_command (bfd *abfd)
 {
   char *com = abfd->tdata.trad_core_data->u.pt_comm;
+
   if (*com)
     return com;
   else
@@ -148,15 +146,14 @@ ptrace_unix_core_file_failing_command (abfd)
 }
 
 int
-ptrace_unix_core_file_failing_signal (abfd)
-     bfd *abfd;
+ptrace_unix_core_file_failing_signal (bfd *abfd)
 {
   return abfd->tdata.trad_core_data->u.pt_sigframe.sig_num;
 }
 \f
 /* If somebody calls any byte-swapping routines, shoot them.  */
 static void
-swap_abort ()
+swap_abort (void)
 {
   abort (); /* This way doesn't require any declaration for ANSI to fuck up */
 }
@@ -215,7 +212,7 @@ const bfd_target ptrace_core_vec =
 
     NULL,
 
-    (PTR) 0                    /* backend_data */
+    NULL                       /* backend_data */
   };
 
 #endif /* PTRACE_CORE */
This page took 0.028406 seconds and 4 git commands to generate.