start of new file
[IRC.git] / Robust / src / Runtime / checkpoint.h
index 80006a6bb792a65212f8475f80068b7151aad5f4..9f600953500cfa39332715e0112031875266b118 100644 (file)
@@ -2,10 +2,10 @@
 #define CHECKPOINT_H
 #include "SimpleHash.h"
 
-void ** makecheckpoint(int numparams, void ** pointerarray, struct SimpleHash * forward, struct SimpleHash * reverse);
+void ** makecheckpoint(int numparams, void ** pointerarray, struct RuntimeHash * forward, struct RuntimeHash * reverse);
 
-void restorecheckpoint(int numparams, void ** original, void ** checkpoint, struct SimpleHash *forward, struct SimpleHash * reverse);
+void restorecheckpoint(int numparams, void ** original, void ** checkpoint, struct RuntimeHash *forward, struct RuntimeHash * reverse);
 
 void * createcopy(void * orig);
-
+void freemalloc();
 #endif