Reorganisation of the source tree
[ghc-hetmet.git] / ghc / rts / hooks / StackOverflow.c
diff --git a/ghc/rts/hooks/StackOverflow.c b/ghc/rts/hooks/StackOverflow.c
deleted file mode 100644 (file)
index a395a3a..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-/* -----------------------------------------------------------------------------
- *
- * User-overridable RTS hooks.
- *
- * ---------------------------------------------------------------------------*/
-
-#include "Rts.h"
-
-#include <stdio.h>
-
-void
-StackOverflowHook (lnat stack_size)    /* in bytes */
-{
-    fprintf(stderr, "Stack space overflow: current size %ld bytes.\nUse `+RTS -Ksize' to increase it.\n", stack_size);
-}
-