Added missing test driver header file.
authorJustin Seyster <jseyster@cs.sunysb.edu>
Thu, 1 Apr 2010 20:28:08 +0000 (16:28 -0400)
committerJustin Seyster <jseyster@cs.sunysb.edu>
Thu, 1 Apr 2010 20:28:08 +0000 (16:28 -0400)
test/test-driver.h [new file with mode: 0644]

diff --git a/test/test-driver.h b/test/test-driver.h
new file mode 100644 (file)
index 0000000..aba1c87
--- /dev/null
@@ -0,0 +1,8 @@
+#ifndef __TEST_DRIVER_H__
+#define __TEST_DRIVER_H__
+
+void run_test();
+
+void check_printf(const char *fmt, ...) __attribute__((format(printf, 1, 2)));
+
+#endif