2002-02-10 Michael Chastain <mec@shout.net>

* gdb.base/funcargs.c (localvars_after_alloca): Fix return type.
	(call_after_alloca): Ditto.
This commit is contained in:
Michael Chastain 2002-02-11 04:47:59 +00:00
parent 434d2d4f74
commit 9a81ba5174
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2002-02-10 Michael Chastain <mec@shout.net>
* gdb.base/funcargs.c (localvars_after_alloca): Fix return type.
(call_after_alloca): Ditto.
2002-02-10 Daniel Jacobowitz <drow@mvista.com>
* gdb.base/ending-run.exp: Guard "cont" test with

View File

@ -634,7 +634,7 @@ void test_struct_args ()
#ifdef PROTOTYPES
void localvars_after_alloca (char c, short s, int i, long l)
#else
int
void
localvars_after_alloca (c, s, i, l)
char c;
short s;
@ -671,7 +671,7 @@ char c; int i; short s; long l; unsigned char uc; unsigned short us; unsigned lo
#ifdef PROTOTYPES
void call_after_alloca (char c, short s, int i, long l)
#else
int
void
call_after_alloca (c, s, i, l)
char c;
short s;