Fix clang compilation errors in gdb.mi/basics.c.

gdb/testsuite/ChangeLog:

	* gdb.mi/basics.c (callee3, callee2, callee1): Specify result type.
	(main): Ditto.
This commit is contained in:
Doug Evans 2014-08-25 12:40:54 -07:00
parent 564b7600f2
commit 6649db3523
2 changed files with 9 additions and 4 deletions

View file

@ -1,3 +1,8 @@
2014-08-25 Doug Evans <dje@google.com>
* gdb.mi/basics.c (callee3, callee2, callee1): Specify result type.
(main): Ditto.
2014-08-25 Doug Evans <dje@google.com>
* gdb.threads/thread-execl.exp: #include <stdio.h>.

View file

@ -29,17 +29,17 @@ int callee4 (void)
C = A + B;
return 0;
}
callee3 (char *strarg)
void callee3 (char *strarg)
{
callee4 ();
}
callee2 (int intarg, char *strarg)
void callee2 (int intarg, char *strarg)
{
callee3 (strarg);
}
callee1 (int intarg, char *strarg, double fltarg)
void callee1 (int intarg, char *strarg, double fltarg)
{
callee2 (intarg, strarg);
}
@ -57,7 +57,7 @@ void do_nothing (void)
{
}
main ()
int main ()
{
callee1 (2, "A string argument.", 3.5);
callee1 (2, "A string argument.", 3.5);