From eba243a22aa6713d9a57c5a109841f39359043ed Mon Sep 17 00:00:00 2001 From: Anna Schumaker Date: Mon, 21 Dec 2015 10:15:48 -0500 Subject: [PATCH] core/tests: Remove test.h This file is no longer needed now that everything has been converted to C. Signed-off-by: Anna Schumaker --- tests/core/test.h | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 tests/core/test.h diff --git a/tests/core/test.h b/tests/core/test.h deleted file mode 100644 index c505337c..00000000 --- a/tests/core/test.h +++ /dev/null @@ -1,25 +0,0 @@ -/* - * Copyright 2015 (c) Anna Schumaker. - */ - -#ifndef TESTS_CORE_TESTS_H -#define TESTS_CORE_TESTS_H - -extern "C" { -#include -} - -#include - - -#undef tostring - -template -static inline char *tostring(T s) -{ - std::stringstream ss; - ss << s; - return strdup(ss.str().c_str()); -} - -#endif /* TESTS_CORE_TESTS_H */