From: panne Date: Sat, 27 May 2000 14:28:06 +0000 (+0000) Subject: [project @ 2000-05-27 14:28:06 by panne] X-Git-Tag: Approximately_9120_patches~4366 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=3ea8a46cbb3b189f9fbe05fd9f8927be3b907f42;p=ghc-hetmet.git [project @ 2000-05-27 14:28:06 by panne] Bug or feature? Changed `envyron' back to `environ', otherwise hslibs/posix/cbits/env.c can't be compiled. If this breaks something on M$, it must be #ifdef-ed somehow, but not simply be renamed. --- diff --git a/ghc/includes/Stg.h b/ghc/includes/Stg.h index ac7d976..6e5c1b1 100644 --- a/ghc/includes/Stg.h +++ b/ghc/includes/Stg.h @@ -1,5 +1,5 @@ /* ----------------------------------------------------------------------------- - * $Id: Stg.h,v 1.31 2000/05/26 10:14:33 sewardj Exp $ + * $Id: Stg.h,v 1.32 2000/05/27 14:28:06 panne Exp $ * * (c) The GHC Team, 1998-1999 * @@ -183,7 +183,7 @@ void _stgAssert (char *, unsigned int); DLL_IMPORT_RTS extern char **prog_argv; /* so we can get at these from Haskell */ DLL_IMPORT_RTS extern int prog_argc; -extern char **envyron; +extern char **environ; extern void stackOverflow(void);