From 2234743006cfc65b6c716401ece4ef5aba1d0dfa Mon Sep 17 00:00:00 2001 From: sof Date: Tue, 26 Mar 2002 21:02:19 +0000 Subject: [PATCH] [project @ 2002-03-26 21:02:19 by sof] cygwin: stick with system() --- cbits/system.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cbits/system.c b/cbits/system.c index 6c4e7f5..4d9fb10 100644 --- a/cbits/system.c +++ b/cbits/system.c @@ -1,7 +1,7 @@ /* * (c) The University of Glasgow 2002 * - * $Id: system.c,v 1.5 2002/02/07 11:13:30 simonmar Exp $ + * $Id: system.c,v 1.6 2002/03/26 21:02:19 sof Exp $ * * system Runtime Support */ @@ -20,7 +20,7 @@ HsInt systemCmd(HsAddr cmd) { /* -------------------- WINDOWS VERSION --------------------- */ -#if defined(mingw32_TARGET_OS) +#if defined(mingw32_TARGET_OS) || defined(cygwin32_TARGET_OS) return system(cmd); #else /* -------------------- UNIX VERSION --------------------- */ -- 1.7.10.4