[project @ 1998-04-10 10:54:14 by simonm]
[ghc-hetmet.git] / ghc / lib / std / cbits / getClockTime.c
similarity index 85%
rename from ghc/lib/std/cbits/getClockTime.lc
rename to ghc/lib/std/cbits/getClockTime.c
index b6f42e6..9f031bf 100644 (file)
@@ -1,15 +1,16 @@
-%
-% (c) The GRASP/AQUA Project, Glasgow University, 1995
-%
-\subsection[getClockTime.lc]{getClockTime Runtime Support}
-
-\begin{code}
+/* 
+ * (c) The GRASP/AQUA Project, Glasgow University, 1994-1998
+ *
+ * $Id: getClockTime.c,v 1.1 1998/04/10 10:54:35 simonm Exp $
+ *
+ * getClockTime Runtime Support
+ */
 
 #ifndef _AIX
 #define NON_POSIX_SOURCE    /* gettimeofday */
 #endif
 
-#include "rtsdefs.h"
+#include "Rts.h"
 #include "stgio.h"
 
 #ifdef HAVE_GETCLOCK
@@ -74,4 +75,3 @@ getClockTime(StgByteArray sec, StgByteArray nsec)
 #endif
 #endif
 }
-\end{code}