[project @ 1998-04-10 10:54:14 by simonm]
[ghc-hetmet.git] / ghc / lib / std / cbits / closeFile.c
similarity index 61%
rename from ghc/lib/std/cbits/closeFile.lc
rename to ghc/lib/std/cbits/closeFile.c
index 9f4c80e..90eeb9d 100644 (file)
@@ -1,16 +1,16 @@
-%
-% (c) The GRASP/AQUA Project, Glasgow University, 1994
-%
-\subsection[closeFile.lc]{hClose Runtime Support}
-
-\begin{code}
-
-#include "rtsdefs.h"
+/* 
+ * (c) The GRASP/AQUA Project, Glasgow University, 1994-1998
+ *
+ * $Id: closeFile.c,v 1.1 1998/04/10 10:54:14 simonm Exp $
+ *
+ * hClose Runtime Support
+ */
+
+#include "Rts.h"
 #include "stgio.h"
 
 StgInt
-closeFile(fp)
-StgForeignObj fp;
+closeFile(StgAddr fp)
 {
     int rc;
 
@@ -29,7 +29,5 @@ StgForeignObj fp;
     return 0;
 }
 
-\end{code}
-