[project @ 1996-07-25 20:43:49 by partain]
[ghc-hetmet.git] / ghc / runtime / c-as-asm / FreeMallocPtr.lc
diff --git a/ghc/runtime/c-as-asm/FreeMallocPtr.lc b/ghc/runtime/c-as-asm/FreeMallocPtr.lc
deleted file mode 100644 (file)
index 8dd9d03..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-\section[freemallocptr]{FreeMallocPtr}
-
-ToDo: obliterate -- SOF
-
-This is the default definition of FreeMallocPtr.  It is a file by
-itself so that the linker can choose to ignore it if it has already
-seen a definition of FreeMallocPtr.
-
-\begin{code}
-#ifndef PAR
-
-#include "rtsdefs.h"
-
-void
-FreeMallocPtr (StgForeignObj mp)
-{
-    fprintf(stderr, "Error: No deallocation routine for MallocPtr %lx\n", (W_) mp);
-    EXIT(EXIT_FAILURE);
-}
-
-#endif /* not PAR */
-\end{code}