summaryrefslogtreecommitdiffstats
path: root/testsuites
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2009-10-26 05:30:29 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2009-10-26 05:30:29 +0000
commita00d2e5f2adbe7fa61be47815a2fb28a3afa8d22 (patch)
tree1bf45fb5d41ee86e8a6d0492d694595cbce7c0ed /testsuites
parent2009-10-26 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-a00d2e5f2adbe7fa61be47815a2fb28a3afa8d22.tar.bz2
2009-10-26 Ralf Corsépius <ralf.corsepius@rtems.org>
* support/src/test_support.c: Add missing prototypes.
Diffstat (limited to 'testsuites')
-rw-r--r--testsuites/ChangeLog1
-rw-r--r--testsuites/support/src/test_support.c4
2 files changed, 3 insertions, 2 deletions
diff --git a/testsuites/ChangeLog b/testsuites/ChangeLog
index dc73c624ba..7513d6f318 100644
--- a/testsuites/ChangeLog
+++ b/testsuites/ChangeLog
@@ -1,5 +1,6 @@
2009-10-26 Ralf Corsépius <ralf.corsepius@rtems.org>
+ * support/src/test_support.c: Add missing prototypes.
* support/include/tmacros.h: Include <inttypes.h>.
Move extern "C".
Let put_name use "int" instead "uint32_t" (Arg to putchar must be int).
diff --git a/testsuites/support/src/test_support.c b/testsuites/support/src/test_support.c
index c1e1010257..254083712e 100644
--- a/testsuites/support/src/test_support.c
+++ b/testsuites/support/src/test_support.c
@@ -22,7 +22,7 @@
static char Too_Long_Name[PATH_MAX + 2];
static char Longest_Name[PATH_MAX + 1];
-const char *Get_Too_Long_Name()
+const char *Get_Too_Long_Name(void)
{
int i;
@@ -32,7 +32,7 @@ const char *Get_Too_Long_Name()
return Too_Long_Name;
}
-const char *Get_Longest_Name()
+const char *Get_Longest_Name(void)
{
int i;