avoid gcc warning about old-style code in gdb_get_stdin

git-svn-id: trunk@28935 -
This commit is contained in:
pierre 2014-10-26 23:01:06 +00:00
parent c528a029ec
commit 5a2ed55af4

View File

@ -188,7 +188,7 @@ cat > gdb_get_stdin.c <<EOF
FILE * gdb_get_stdin (void);
FILE *
gdb_get_stdin ()
gdb_get_stdin (void)
{
return stdin;
}