summaryrefslogtreecommitdiffstats
path: root/c/src/tests/samples/hello/system.h
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/tests/samples/hello/system.h')
-rw-r--r--c/src/tests/samples/hello/system.h19
1 files changed, 11 insertions, 8 deletions
diff --git a/c/src/tests/samples/hello/system.h b/c/src/tests/samples/hello/system.h
index 49deb52d4a..8af4376e0f 100644
--- a/c/src/tests/samples/hello/system.h
+++ b/c/src/tests/samples/hello/system.h
@@ -14,19 +14,22 @@
* $Id$
*/
-#include <rtems.h>
-#include <bsp.h>
+#include <tmacros.h>
-#include <stdio.h>
+/* functions */
-/* Miscellaneous */
+rtems_task Init(
+ rtems_task_argument argument
+);
-#define EXTERN extern /* external definition */
+/* configuration information */
-/* macros */
+#define CONFIGURE_TEST_NEEDS_CONSOLE_DRIVER
-/* structures */
+#include <confdefs.h>
-#include "gvar.h"
+/* global variables */
+
+TEST_EXTERN rtems_id Global_variable; /* example global variable */
/* end of include file */