Reorganisation of the source tree
[ghc-hetmet.git] / ghc / rts / Arena.h
diff --git a/ghc/rts/Arena.h b/ghc/rts/Arena.h
deleted file mode 100644 (file)
index 7a2989e..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-/* -----------------------------------------------------------------------------
-   (c) The University of Glasgow 2001
-
-   Arena allocation interface.
-   -------------------------------------------------------------------------- */
-
-#ifndef ARENA_H
-#define ARENA_H
-
-// Abstract type of arenas
-typedef struct _Arena Arena;
-
-// Start a new arena
-extern Arena * newArena   ( void );
-
-// Allocate memory in an arena
-extern void  * arenaAlloc ( Arena *, size_t );
-
-// Free an entire arena
-extern void    arenaFree  ( Arena * );
-
-// For internal use only:
-extern unsigned long arenaBlocks( void );
-
-#endif /* ARENA_H */