From 6b7c06e0715663168ed35ef00084e07e03cdd28b Mon Sep 17 00:00:00 2001 From: panne <unknown> Date: Mon, 20 Sep 1999 08:36:35 +0000 Subject: [PATCH] [project @ 1999-09-20 08:36:35 by panne] Need sys/types.h for off_t --- ghc/lib/std/cbits/filePosn.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/ghc/lib/std/cbits/filePosn.c b/ghc/lib/std/cbits/filePosn.c index c3b130b063ae..90949ea5c2da 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 <sys/types.h> +#endif + StgInt getFilePosn(ptr) StgForeignPtr ptr; -- GitLab