X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=blobdiff_plain;f=compat%2Fcbits%2FrawSystem.c;h=917594fd2e11f5fedca77f66ddb3530ffb40df06;hp=00b8c49cc17f9d2b4e82efcdcf725d6ee4a372d3;hb=2838dd973520318e566e50f81843658749f1acb4;hpb=0065d5ab628975892cea1ec7303f968c3338cbe1 diff --git a/compat/cbits/rawSystem.c b/compat/cbits/rawSystem.c index 00b8c49..917594f 100644 --- a/compat/cbits/rawSystem.c +++ b/compat/cbits/rawSystem.c @@ -56,7 +56,7 @@ /* -------------------- WINDOWS VERSION --------------------- */ HsInt -rawSystem(HsAddr cmd) +rawSystem(char *cmd) { STARTUPINFO sInfo; PROCESS_INFORMATION pInfo; @@ -90,7 +90,7 @@ rawSystem(HsAddr cmd) /* -------------------- UNIX VERSION --------------------- */ HsInt -rawSystem(HsAddr cmd, HsAddr args) +rawSystem(char *cmd, char **args) { int pid; int wstat;