Don't generate stub files when -fno-code is given.
[ghc-hetmet.git] / ghc / rts / Hash.h
index 7babfa0..ad55953 100644 (file)
@@ -1,5 +1,4 @@
 /*-----------------------------------------------------------------------------
- * $Id: Hash.h,v 1.4 2000/12/04 12:31:21 simonmar Exp $
  *
  * (c) The GHC Team, 1999
  *
@@ -7,6 +6,9 @@
  *
  * -------------------------------------------------------------------------- */
 
+#ifndef HASH_H
+#define HASH_H
+
 typedef struct hashtable HashTable; /* abstract */
 
 /* Hash table access where the keys are StgWords */
@@ -33,3 +35,6 @@ HashTable * allocStrHashTable ( void );
 /* Freeing hash tables 
  */
 void freeHashTable ( HashTable *table, void (*freeDataFun)(void *) );
+
+#endif /* HASH_H */
+