aboutsummaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authorGravatar ross <unknown>2003-04-11 10:00:07 +0000
committerGravatar ross <unknown>2003-04-11 10:00:07 +0000
commit48a465bb8496b2a43f0f6a4821f2f15850e92b63 (patch)
treeb7ba3658814d68be11f9def8ec0d024a4644d61f /include
parentad36edace08e06b26317f5c5002af321fb54d64a (diff)
[project @ 2003-04-11 10:00:07 by ross]
move environ from C to Haskell
Diffstat (limited to 'include')
-rw-r--r--include/HsUnix.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/include/HsUnix.h b/include/HsUnix.h
index 4904dae..f5ce702 100644
--- a/include/HsUnix.h
+++ b/include/HsUnix.h
@@ -1,5 +1,5 @@
/* -----------------------------------------------------------------------------
- * $Id: HsUnix.h,v 1.7 2003/04/11 09:43:38 ross Exp $
+ * $Id: HsUnix.h,v 1.8 2003/04/11 10:00:07 ross Exp $
*
* (c) The University of Glasgow 2002
*
@@ -84,7 +84,6 @@ INLINE int __hsunix_wifsignaled (int stat) { return WIFSIGNALED(stat); }
INLINE int __hsunix_wtermsig (int stat) { return WTERMSIG(stat); }
INLINE int __hsunix_wifstopped (int stat) { return WIFSTOPPED(stat); }
INLINE int __hsunix_wstopsig (int stat) { return WSTOPSIG(stat); }
-INLINE char ** __hsunix_environ () { return environ; }
#ifdef HAVE_RTLDNEXT
INLINE void *__hsunix_rtldNext (void) {return RTLD_NEXT;}