X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=ghc%2Fincludes%2FRts.h;h=77f095cc745fe064c4131bbd16c9e94166fe4e6b;hb=ec6d486e232b41628f72624c95097dc2a69ef5cf;hp=45f66cf91af0370692ea9354bb4a9a5c2722a35b;hpb=ec48c5ab896b9334fa8d747c0a542e0679fe3a8f;p=ghc-hetmet.git diff --git a/ghc/includes/Rts.h b/ghc/includes/Rts.h index 45f66cf..77f095c 100644 --- a/ghc/includes/Rts.h +++ b/ghc/includes/Rts.h @@ -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