Index: src/libcfa/typeobject.c
===================================================================
--- src/libcfa/typeobject.c	(revision cbce2727f642c2a177c82c045248ba1923699527)
+++ 	(revision )
@@ -1,27 +1,0 @@
-//
-// 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.
-//
-// typeobject.c --
-//
-// Author           : Andrew Beach
-// Created On       : Tus Jul 11 15:10:00 2017
-// Last Modified By : Andrew Beach
-// Last Modified On : Tus Jul 12 16:04:00 2017
-// Update Count     : 0
-//
-
-#include "typeobject.h"
-
-// Takes in two non-null pointers to type_objects.
-int is_parent( struct __cfa__type_object const * parent,
-               struct __cfa__type_object const * child ) {
-	do {
-		if ( parent == child )
-			return 1;
-		child = child->parent;
-	} while ( child );
-	return 0;
-}
Index: src/libcfa/typeobject.h
===================================================================
--- src/libcfa/typeobject.h	(revision cbce2727f642c2a177c82c045248ba1923699527)
+++ 	(revision )
@@ -1,29 +1,0 @@
-//
-// 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.
-//
-// typeobject.h -- Builtins for hierarchy objects.
-//
-// Author           : Andrew Beach
-// Created On       : Tus Jul 11 15:08:00 2017
-// Last Modified By : Peter A. Buhr
-// Last Modified On : Sat Jul 22 10:01:48 2017
-// Update Count     : 1
-//
-
-#pragma once
-
-struct __cfa__type_object {
-    struct __cfa__type_object const * const parent;
-};
-
-// Takes in two non-null pointers to type_objects.
-int is_parent( struct __cfa__type_object const * parent,
-               struct __cfa__type_object const * child );
-
-// Local Variables: //
-// mode: c //
-// tab-width: 4 //
-// End: //
