Commit a1e1a451 by Ben Elliston Committed by Ben Elliston

include.c: #include stdlib.h instead of stdio.h...

	* gcc.dg/cpp/trad/include.c: #include stdlib.h instead of stdio.h,
	as newlib's stdio.h uses non-traditional cpp constructs.

From-SVN: r120038
parent d448860e
2006-12-19 Ben Elliston <bje@au.ibm.com>
* gcc.dg/cpp/trad/include.c: #include stdlib.h instead of stdio.h,
as newlib's stdio.h uses non-traditional cpp constructs.
2006-12-18 Brooks Moses <brooks.moses@codesourcery.com>
* gfortran.dg/advance.f90: Renamed to advance_1.f90
......@@ -4,6 +4,6 @@
/* { dg-do preprocess } */
#define __STDC__ 1 /* Stop complaints about non-ISO compilers. */
#define stdio 1
#include <stdio.h> /* { dg-bogus "o such file or directory" } */
#define __STDC__ 1 /* Stop complaints about non-ISO compilers. */
#define stdlib 1
#include <stdlib.h> /* { dg-bogus "o such file or directory" } */
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment