[project @ 2001-07-23 10:43:42 by simonmar]
authorsimonmar <unknown>
Mon, 23 Jul 2001 10:43:42 +0000 (10:43 +0000)
committersimonmar <unknown>
Mon, 23 Jul 2001 10:43:42 +0000 (10:43 +0000)
The real version of this file is in ghc/includes/.

ghc/rts/Linker.h [deleted file]

diff --git a/ghc/rts/Linker.h b/ghc/rts/Linker.h
deleted file mode 100644 (file)
index c143062..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-/* -----------------------------------------------------------------------------
- * $Id: Linker.h,v 1.5 2001/06/06 14:03:41 sewardj Exp $
- *
- * (c) The GHC Team, 2000
- *
- * RTS Object Linker
- *
- * ---------------------------------------------------------------------------*/
-
-/* initialize the object linker */
-void initLinker( void );
-
-/* lookup a symbol in the hash table */
-void *lookupSymbol( char *lbl );
-
-/* delete an object from the pool */
-HsInt unloadObj( char *path );
-
-/* add an obj (populate the global symbol table, but don't resolve yet) */
-HsInt loadObj( char *path );
-
-/* resolve all the currently unlinked objects in memory */
-HsInt resolveObjs( void );
-
-/* load a dynamic library */
-char *addDLL( char* path, char* dll_name );