Mail Archives: djgpp-workers/2001/05/20/16:00:53.1
Hello!
tests/libc/ansi/stdio/hello.c fails to build with gcc 2.95.3, because of
an error in the declaration of main. Here is a fix. OK to commit?
Bye, Rich =]
*** /develop/djgpp/tests/libc/ansi/stdio/hello.c Sat Mar 18 18:55:42 1995
--- c:/develop/djgpp.dev/tests/libc/ansi/stdio/hello.c Sun May 20 19:35:04
2001
***************
*** 1,7 ****
#include <stdio.h>
int
! main(int argc, char *argv)
{
printf("hello\n");
return 0;
--- 1,7 ----
#include <stdio.h>
int
! main(int argc, char *argv[])
{
printf("hello\n");
return 0;
- Raw text -