[project @ 1999-09-20 08:36:35 by panne]
authorpanne <unknown>
Mon, 20 Sep 1999 08:36:35 +0000 (08:36 +0000)
committerpanne <unknown>
Mon, 20 Sep 1999 08:36:35 +0000 (08:36 +0000)
Need sys/types.h for off_t

ghc/lib/std/cbits/filePosn.c

index c3b130b..90949ea 100644 (file)
@@ -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;