[project @ 2005-03-09 08:51:31 by wolfgang]
[ghc-hetmet.git] / ghc / includes / Signals.h
index bd24e5a..cacb1db 100644 (file)
@@ -1,6 +1,6 @@
 /* -----------------------------------------------------------------------------
  *
- * (c) The GHC Team, 1998-2002
+ * (c) The GHC Team, 1998-2005
  *
  * RTS signal handling 
  *
@@ -9,17 +9,10 @@
 #ifndef SIGNALS_H
 #define SIGNALS_H
 
-#define STG_SIG_DFL  (-1)
-#define STG_SIG_IGN  (-2)
-#define STG_SIG_ERR  (-3)
-#define STG_SIG_HAN  (-4)
-#define STG_SIG_RST  (-5)
-
-#if defined(mingw32_HOST_OS)
-extern int stg_InstallConsoleEvent(int action, StgStablePtr *handler);
-#else
-extern int stg_sig_install (int, int, StgStablePtr *, void *);
-#endif
+#define STG_SIG_DFL   (-1)
+#define STG_SIG_IGN   (-2)
+#define STG_SIG_ERR   (-3)
+#define STG_SIG_HAN   (-4)
+#define STG_SIG_RST   (-5)
 
 #endif // SIGNALS_H
-