summaryrefslogtreecommitdiffstats
path: root/testsuites/tmtests/tmoverhd
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2009-10-26 07:40:22 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2009-10-26 07:40:22 +0000
commit2db98e91de01e137c102b3628ce32ec3c61ad2e3 (patch)
tree5705d28dccdb85f6cc3d92e6d865b0bf79b6194c /testsuites/tmtests/tmoverhd
parentAdd local prototype for malloc_walk, malloc_info. (diff)
downloadrtems-2db98e91de01e137c102b3628ce32ec3c61ad2e3.tar.bz2
Add missing prototypes.
Diffstat (limited to 'testsuites/tmtests/tmoverhd')
-rw-r--r--testsuites/tmtests/tmoverhd/empty.c4
-rw-r--r--testsuites/tmtests/tmoverhd/system.h6
2 files changed, 3 insertions, 7 deletions
diff --git a/testsuites/tmtests/tmoverhd/empty.c b/testsuites/tmtests/tmoverhd/empty.c
index 31f2ea32f4..7d44d31f88 100644
--- a/testsuites/tmtests/tmoverhd/empty.c
+++ b/testsuites/tmtests/tmoverhd/empty.c
@@ -12,10 +12,6 @@
#include "system.h"
-rtems_task task_func(void);
-void null_func(void);
-rtems_status_code Empty_directive(void);
-
rtems_timer_service_routine Timer_handler(
rtems_id argument
)
diff --git a/testsuites/tmtests/tmoverhd/system.h b/testsuites/tmtests/tmoverhd/system.h
index 5095438388..32b2f03b8c 100644
--- a/testsuites/tmtests/tmoverhd/system.h
+++ b/testsuites/tmtests/tmoverhd/system.h
@@ -34,11 +34,11 @@ rtems_asr Asr_handler(
rtems_signal_set signals
);
-rtems_task task_func();
+extern rtems_task task_func(void);
-void null_func();
+extern void null_func(void);
-rtems_status_code Empty_directive();
+extern rtems_status_code Empty_directive();
#include <timesys.h>