(main): Use proper prototype.

This commit is contained in:
Andreas Jaeger 2001-03-21 07:21:34 +00:00
parent 481b550f58
commit 5b5d078570
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
extern int test (void);
int
main()
main (void)
{
return test ();
}