mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-02 06:43:58 +08:00
Protoization.
This commit is contained in:
parent
82c230c2d9
commit
da85418c1a
@ -1,3 +1,8 @@
|
||||
2000-08-26 Kevin Buettner <kevinb@redhat.com>
|
||||
|
||||
* gdbserver/gdbreplay.c (main): Protoize.
|
||||
* gdbserver/server.c (start_inferior, main): Protoize.
|
||||
|
||||
2000-08-26 Stephane Carrez <Stephane.Carrez@worldnet.fr>
|
||||
|
||||
* m68hc11-tdep.c (m68hc11_register_names): Update name of registers.
|
||||
|
@ -285,9 +285,7 @@ play (FILE *fp)
|
||||
}
|
||||
|
||||
int
|
||||
main (argc, argv)
|
||||
int argc;
|
||||
char *argv[];
|
||||
main (int argc, char *argv[])
|
||||
{
|
||||
FILE *fp;
|
||||
int ch;
|
||||
|
@ -29,9 +29,7 @@ jmp_buf toplevel;
|
||||
int inferior_pid;
|
||||
|
||||
static unsigned char
|
||||
start_inferior (argv, statusptr)
|
||||
char *argv[];
|
||||
char *statusptr;
|
||||
start_inferior (char *argv[], char *statusptr)
|
||||
{
|
||||
inferior_pid = create_inferior (argv[0], argv);
|
||||
fprintf (stderr, "Process %s created; pid = %d\n", argv[0], inferior_pid);
|
||||
@ -43,9 +41,7 @@ start_inferior (argv, statusptr)
|
||||
extern int remote_debug;
|
||||
|
||||
int
|
||||
main (argc, argv)
|
||||
int argc;
|
||||
char *argv[];
|
||||
main (int argc, char *argv[])
|
||||
{
|
||||
char ch, status, own_buf[PBUFSIZ], mem_buf[2000];
|
||||
int i = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user