summaryrefslogtreecommitdiffstats
path: root/testsuites
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites')
-rw-r--r--testsuites/ChangeLog1
-rw-r--r--testsuites/support/include/test_support.h6
2 files changed, 4 insertions, 3 deletions
diff --git a/testsuites/ChangeLog b/testsuites/ChangeLog
index 4b1d703153..b574d2d601 100644
--- a/testsuites/ChangeLog
+++ b/testsuites/ChangeLog
@@ -1,5 +1,6 @@
2009-10-26 Ralf Corsépius <ralf.corsepius@rtems.org>
+ * support/include/test_support.h: Add missing prototypes.
* support/include/tmacros.h: Move _Thread_Dispatch_disable_level
outside of check_dispatch_disable_level.
diff --git a/testsuites/support/include/test_support.h b/testsuites/support/include/test_support.h
index ba0acb0178..d3fd472a99 100644
--- a/testsuites/support/include/test_support.h
+++ b/testsuites/support/include/test_support.h
@@ -11,9 +11,9 @@
extern "C" {
#endif
-void Allocate_majority_of_workspace( int smallest );
-const char *Get_Too_Long_Name();
-const char *Get_Longest_Name();
+extern void Allocate_majority_of_workspace( int smallest );
+extern const char *Get_Too_Long_Name(void);
+extern const char *Get_Longest_Name(void);
#ifdef __cplusplus
};