diff options
Diffstat (limited to 'ghc/lib/std/cbits/openFile.c')
-rw-r--r-- | ghc/lib/std/cbits/openFile.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/ghc/lib/std/cbits/openFile.c b/ghc/lib/std/cbits/openFile.c index ae4d28724a..5c5848b2ea 100644 --- a/ghc/lib/std/cbits/openFile.c +++ b/ghc/lib/std/cbits/openFile.c @@ -1,11 +1,14 @@ /* * (c) The GRASP/AQUA Project, Glasgow University, 1994-1998 * - * $Id: openFile.c,v 1.3 1998/12/02 13:27:44 simonm Exp $ + * $Id: openFile.c,v 1.4 1999/01/07 15:48:40 simonm Exp $ * * openFile Runtime Support */ +/* We use lstat, which is sadly not POSIX */ +#define NON_POSIX_SOURCE + #include "Rts.h" #include "stgio.h" #include "fileObject.h" |