[project @ 1999-08-24 09:33:08 by simonmar]
[ghc-hetmet.git] / ghc / includes / Rts.h
index 45f66cf..77f095c 100644 (file)
@@ -1,5 +1,7 @@
 /* -----------------------------------------------------------------------------
- * $Id: Rts.h,v 1.4 1999/01/21 10:31:43 simonm Exp $
+ * $Id: Rts.h,v 1.6 1999/02/05 16:02:27 simonm Exp $
+ *
+ * (c) The GHC Team, 1998-1999
  *
  * Top-level include file for the RTS itself
  *
@@ -83,7 +85,6 @@ typedef enum {
 #define stg_min(a,b) ({typeof(a) _a = (a), _b = (b); _a <= _b ? _a : _b; })
 #define stg_max(a,b) ({typeof(a) _a = (a), _b = (b); _a <= _b ? _b : _a; })
 
-
 #define UNUSED __attribute__((unused))
 
 #endif RTS_H