Index: src/tests/random.c
===================================================================
--- src/tests/random.c	(revision ed0e67af84f24e07df5e60055abed88b8c7c24e4)
+++ src/tests/random.c	(revision ed0e67af84f24e07df5e60055abed88b8c7c24e4)
@@ -0,0 +1,49 @@
+// 
+// Cforall Version 1.0.0 Copyright (C) 2016 University of Waterloo
+//
+// The contents of this file are covered under the licence agreement in the
+// file "LICENCE" distributed with Cforall.
+// 
+// random.c -- 
+// 
+// Author           : Peter A. Buhr
+// Created On       : Tue Jul  5 21:29:30 2016
+// Last Modified By : Peter A. Buhr
+// Last Modified On : Tue Jul  5 21:29:54 2016
+// Update Count     : 1
+// 
+
+#include <fstream>
+#include <stdlib>										// random
+#include <unistd.h>										// getpid
+
+int main() {
+	rand48seed( getpid() );								// set random seed
+
+	// test polymorphic calls to random and stream
+	char c = rand48();
+	sout | c | endl;
+	int i = rand48();
+    sout | i | endl;
+	unsigned int ui = rand48();
+    sout | ui | endl;
+	long int li = rand48();
+    sout | li | endl;
+	unsigned long int uli = rand48();
+    sout | uli | endl;
+    float f = rand48();
+    sout | f | endl;
+    double d = rand48();
+    sout | d | endl;
+    float _Complex fc = rand48();
+    sout | fc | endl;
+    double _Complex dc = rand48();
+    sout | dc | endl;
+    long double _Complex ldc = rand48();
+    sout | ldc | endl;
+} // main
+
+// Local Variables: //
+// tab-width: 4 //
+// compile-command: "cfa random.c" //
+// End: //
Index: src/tests/vector/vector_int.c
===================================================================
--- src/tests/vector/vector_int.c	(revision a6151baa3a12bfe16ad97aa148f11da6d2d8d4c3)
+++ src/tests/vector/vector_int.c	(revision ed0e67af84f24e07df5e60055abed88b8c7c24e4)
@@ -9,14 +9,12 @@
 // Author           : Richard C. Bilson
 // Created On       : Wed May 27 17:56:53 2015
-// Last Modified By : Rob Schluntz
-// Last Modified On : Wed Apr 27 17:27:12 2016
-// Update Count     : 3
+// Last Modified By : Peter A. Buhr
+// Last Modified On : Tue Jul  5 21:00:56 2016
+// Update Count     : 4
 //
 
 #include "vector_int.h"
-extern "C" {
 #include <stdlib.h>
 #include <assert.h>
-}
 
 #define DEFAULT_CAPACITY 20
