Index: src/examples/simplePoly.c
===================================================================
--- src/examples/simplePoly.c	(revision 843054c23fcb725d2486e5e42e91b3741bc523b8)
+++ src/examples/simplePoly.c	(revision 4eb1db6706393524fc66d06a1b8e7c5014ecabd8)
@@ -1,8 +1,20 @@
-// './cfa-cpp -nc < simplePoly.c'
+//
+// Cforall Version 1.0.0 Copyright (C) 2015 University of Waterloo
+//
+// The contents of this file are covered under the licence agreement in the
+// file "LICENCE" distributed with Cforall.
+//
+// simplePoly.c -- 
+//
+// Author           : Richard C. Bilson
+// Created On       : Wed May 27 17:56:53 2015
+// Last Modified By : Peter A. Buhr
+// Last Modified On : Wed May 27 18:31:17 2015
+// Update Count     : 2
+//
 
 forall( type T, type U | { T f( T, U ); } )
-T q( T t, U u )
-{
-    return f( t, u );
+T q( T t, U u ) {
+	return f( t, u );
 //  return t;
 }
@@ -11,7 +23,12 @@
 
 void g( void ) {
-    int y;
-    double x;
+	int y;
+	double x;
 //  if ( y )
-    q( 3, &x );
+	q( 3, &x );
 }
+
+// Local Variables: //
+// tab-width: 4 //
+// compile-command: "cfa simplePoly.c" //
+// End: //
