Commit ad16e76b by David Billinghurst Committed by David Billinghurst

assert4.c: Fix for cygwin

2005-03-04  David Billinghurst  <David.Billinghurst@riotinto.com>

	* gcc.dg/cpp/assert4.c:  Fix for cygwin

From-SVN: r95849
parent 4300c421
2005-03-04 David Billinghurst <David.Billinghurst@riotinto.com>
* gcc.dg/cpp/assert4.c: Fix for cygwin
2005-03-02 Alexandre Oliva <aoliva@redhat.com>
* g++.dg/overload/using2.C: New.
......
......@@ -78,7 +78,7 @@
# error
#endif
#if defined __unix__ || defined _AIX
#if ( defined __unix__ && !defined __CYGWIN__ ) || defined _AIX
# if !#system(unix)
# error
# endif
......@@ -118,7 +118,7 @@
# error
#endif
#if defined __WINNT__
#if defined __WINNT__ || defined __CYGWIN__
# if !#system(winnt)
# error
# endif
......
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