Eliminate PARAMS.
authorKevin Buettner <kevinb@redhat.com>
Sat, 10 Jun 2000 01:32:12 +0000 (01:32 +0000)
committerKevin Buettner <kevinb@redhat.com>
Sat, 10 Jun 2000 01:32:12 +0000 (01:32 +0000)
gdb/ChangeLog
gdb/command.h
gdb/monitor.h

index a87342d9d3b57e7f87c4a85803a32be09ebdbfbd..984cdf999794f52d78e37728247ba14f00e65972 100644 (file)
@@ -1,3 +1,8 @@
+2000-06-08  Kevin Buettner  <kevinb@redhat.com>
+
+       * command.h, monitor.h: Eliminate use of PARAMS from these
+       files.
+
 2000-06-08  Fernando Nasser  <fnasser@cygnus.com>
 
        * config/i386/tm-embed.h: New file.  Specific for embedded targets
index 7f5a6b2ae2efe9bbbdf940e52695de105fe94cea..469df9f8cb97b426ee96bb68478c9c63a043f7b7 100644 (file)
@@ -115,7 +115,7 @@ struct cmd_list_element
        void (*sfunc) (char *args, int from_tty, struct cmd_list_element * c);
       }
     function;
-#define NO_FUNCTION ((void (*) PARAMS((char *args, int from_tty))) 0)
+#define NO_FUNCTION ((void (*) (char *args, int from_tty)) 0)
 
     /* Documentation of this command (or help topic).
        First line is brief documentation; remaining lines form, with it,
index 23fad577e4f36ded1cdfa90704955e78d3276da5..712a4c58e702ef6d96ce758f0ab3519d9ef8fa66 100644 (file)
@@ -96,10 +96,10 @@ struct monitor_ops
     char *dump_registers;      /* Command to dump all regs at once */
     char *register_pattern;    /* Pattern that picks out register from reg dump */
     void (*supply_register) (char *name, int namelen, char *val, int vallen);
-    void (*load_routine) PARAMS ((serial_t desc, char *file,
-                                 int hashmark));       /* Download routine */
-    int (*dumpregs) PARAMS ((void));   /* routine to dump all registers */
-    int (*continue_hook) PARAMS ((void));      /* Emit the continue command */
+    void (*load_routine) (serial_t desc, char *file,
+                         int hashmark);        /* Download routine */
+    int (*dumpregs) (void);    /* routine to dump all registers */
+    int (*continue_hook) (void);       /* Emit the continue command */
     int (*wait_filter) (char *buf,     /* Maybe contains registers */
                        int bufmax,
                        int *response_length,