Index: src/Common/Heap.cc
===================================================================
--- src/Common/Heap.cc	(revision cbbd5b4862d3b4fd1165470af06cedfb1a0477e6)
+++ src/Common/Heap.cc	(revision cbbd5b4862d3b4fd1165470af06cedfb1a0477e6)
@@ -0,0 +1,20 @@
+//
+// Cforall Version 1.0.0 Copyright (C) 2018 University of Waterloo
+//
+// The contents of this file are covered under the licence agreement in the
+// file "LICENCE" distributed with Cforall.
+//
+// Heap.cc --
+//
+// Author           : Peter A. Buhr
+// Created On       :
+// Last Modified By : Peter A. Buhr
+// Last Modified On : Thu May  3 16:16:10 2018
+// Update Count     : 2
+//
+
+namespace HeapStats{
+  void newPass( const char * const name ) {}
+  void printStats() {}
+}
+
Index: src/Common/Heap.h
===================================================================
--- src/Common/Heap.h	(revision cbbd5b4862d3b4fd1165470af06cedfb1a0477e6)
+++ src/Common/Heap.h	(revision cbbd5b4862d3b4fd1165470af06cedfb1a0477e6)
@@ -0,0 +1,21 @@
+//
+// Cforall Version 1.0.0 Copyright (C) 2018 University of Waterloo
+//
+// The contents of this file are covered under the licence agreement in the
+// file "LICENCE" distributed with Cforall.
+//
+// Heap.h --
+//
+// Author           : Peter A. Buhr
+// Created On       :
+// Last Modified By : Peter A. Buhr
+// Last Modified On : Thu May  3 16:16:10 2018
+// Update Count     : 2
+//
+
+#pragma once
+
+namespace HeapStats {
+  void newPass( const char * const name );
+  void printStats();
+}
