* toplev.c: Update test for win32 (&& ! cygwin32).

From-SVN: r12649
This commit is contained in:
Doug Evans 1996-08-18 01:27:54 +00:00
parent da39823a4c
commit 876ac40dfc
1 changed files with 2 additions and 2 deletions

View File

@ -4013,7 +4013,7 @@ You Lose! You must define PREFERRED_DEBUGGING_TYPE!
compile_file (filename);
#if !defined(OS2) && !defined(VMS) && !defined(_WIN32)
#if !defined(OS2) && !defined(VMS) && (!defined(_WIN32) || defined (__CYGWIN32__))
if (flag_print_mem)
{
char *lim = (char *) sbrk (0);
@ -4028,7 +4028,7 @@ You Lose! You must define PREFERRED_DEBUGGING_TYPE!
system ("ps v");
#endif /* not USG */
}
#endif /* not OS2 and not VMS and not _WIN32 */
#endif /* ! OS2 && ! VMS && (! _WIN32 || CYGWIN32) */
if (errorcount)
exit (FATAL_EXIT_CODE);