Index: src/Parser/LinkageSpec.cc
===================================================================
--- src/Parser/LinkageSpec.cc	(revision 0982a056951836dd5c60fab580311fce37cc0165)
+++ src/Parser/LinkageSpec.cc	(revision 3271166bd06e22b1c00ae183b40871a4217c4ff6)
@@ -10,6 +10,6 @@
 // Created On       : Sat May 16 13:22:09 2015
 // Last Modified By : Andrew Beach
-// Last Modified On : Fri Jul  7 11:11:00 2017
-// Update Count     : 25
+// Last Modified On : Thr Spt 12 15:59:00 2018
+// Update Count     : 26
 //
 
@@ -23,18 +23,4 @@
 
 namespace LinkageSpec {
-
-Spec linkageCheck( CodeLocation location, const string * spec ) {
-	assert( spec );
-	unique_ptr<const string> guard( spec );	// allocated by lexer
-	if ( *spec == "\"Cforall\"" ) {
-		return Cforall;
-	} else if ( *spec == "\"C\"" ) {
-		return C;
-	} else if ( *spec == "\"BuiltinC\"" ) {
-		return BuiltinC;
-	} else {
-		SemanticError( location, "Invalid linkage specifier " + *spec );
-	} // if
-}
 
 Spec linkageUpdate( CodeLocation location, Spec old_spec, const string * cmd ) {
Index: src/Parser/LinkageSpec.h
===================================================================
--- src/Parser/LinkageSpec.h	(revision 0982a056951836dd5c60fab580311fce37cc0165)
+++ src/Parser/LinkageSpec.h	(revision 3271166bd06e22b1c00ae183b40871a4217c4ff6)
@@ -9,7 +9,7 @@
 // Author           : Rodolfo G. Esteves
 // Created On       : Sat May 16 13:24:28 2015
-// Last Modified By : Peter A. Buhr
-// Last Modified On : Mon Jul  2 07:46:49 2018
-// Update Count     : 16
+// Last Modified By : Andrew Beach
+// Last Modified On : Thr Spt 13 15:59:00 2018
+// Update Count     : 17
 //
 
@@ -41,6 +41,4 @@
 
 
-	Spec linkageCheck( CodeLocation location, const std::string * );
-	// Returns the Spec with the given name (limited to C, Cforall & BuiltinC)
 	Spec linkageUpdate( CodeLocation location, Spec old_spec, const std::string * cmd );
 	/* If cmd = "C" returns a Spec that is old_spec with is_mangled = false
