summaryrefslogtreecommitdiffstats
path: root/testsuites/support/include/test_support.h
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/support/include/test_support.h')
-rw-r--r--testsuites/support/include/test_support.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/testsuites/support/include/test_support.h b/testsuites/support/include/test_support.h
new file mode 100644
index 0000000000..ba0acb0178
--- /dev/null
+++ b/testsuites/support/include/test_support.h
@@ -0,0 +1,22 @@
+/*
+ * Support routines for test code.
+ *
+ * $Id$
+ */
+
+#ifndef __TEST_SUPPORT_h
+#define __TEST_SUPPORT_h
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+void Allocate_majority_of_workspace( int smallest );
+const char *Get_Too_Long_Name();
+const char *Get_Longest_Name();
+
+#ifdef __cplusplus
+};
+#endif
+
+#endif