From: panne Date: Mon, 20 Sep 1999 08:36:35 +0000 (+0000) Subject: [project @ 1999-09-20 08:36:35 by panne] X-Git-Tag: Approximately_9120_patches~5759 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=6b7c06e0715663168ed35ef00084e07e03cdd28b;p=ghc-hetmet.git [project @ 1999-09-20 08:36:35 by panne] Need sys/types.h for off_t --- diff --git a/ghc/lib/std/cbits/filePosn.c b/ghc/lib/std/cbits/filePosn.c index c3b130b..90949ea 100644 --- a/ghc/lib/std/cbits/filePosn.c +++ b/ghc/lib/std/cbits/filePosn.c @@ -1,7 +1,7 @@ /* * (c) The GRASP/AQUA Project, Glasgow University, 1994-1998 * - * $Id: filePosn.c,v 1.4 1999/09/19 19:20:50 sof Exp $ + * $Id: filePosn.c,v 1.5 1999/09/20 08:36:35 panne Exp $ * * hGetPosn and hSetPosn Runtime Support */ @@ -9,6 +9,10 @@ #include "Rts.h" #include "stgio.h" +#ifdef HAVE_SYS_TYPES_H +#include +#endif + StgInt getFilePosn(ptr) StgForeignPtr ptr;