[svn:parrot] r44392 - branches/rm_cflags/config/auto/warnings
coke at svn.parrot.org
coke at svn.parrot.org
Tue Feb 23 16:14:09 UTC 2010
Author: coke
Date: Tue Feb 23 16:14:09 2010
New Revision: 44392
URL: https://trac.parrot.org/parrot/changeset/44392
Log:
Fixup program used for testing warnings.
The original version of this failed 2 gcc warnings that were probed for,
marking them as invalid (and therefore unused on any other files.)
Also, the parrot include was superfluous.
Austin++
Modified:
branches/rm_cflags/config/auto/warnings/test_c.in
Modified: branches/rm_cflags/config/auto/warnings/test_c.in
==============================================================================
--- branches/rm_cflags/config/auto/warnings/test_c.in Tue Feb 23 16:05:28 2010 (r44391)
+++ branches/rm_cflags/config/auto/warnings/test_c.in Tue Feb 23 16:14:09 2010 (r44392)
@@ -6,11 +6,10 @@
#include <stdio.h>
#include <stdlib.h>
-#include "parrot/compiler.h"
/* as long as the file compiles, everything is okay */
int
-main()
+main(void)
{
return EXIT_SUCCESS;
}
More information about the parrot-commits
mailing list