summaryrefslogtreecommitdiff
path: root/examples/hello_TARGETS/hello1/hello1.c
diff options
context:
space:
mode:
Diffstat (limited to 'examples/hello_TARGETS/hello1/hello1.c')
-rw-r--r--examples/hello_TARGETS/hello1/hello1.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/examples/hello_TARGETS/hello1/hello1.c b/examples/hello_TARGETS/hello1/hello1.c
new file mode 100644
index 0000000..026f7e0
--- /dev/null
+++ b/examples/hello_TARGETS/hello1/hello1.c
@@ -0,0 +1,8 @@
+#include <stdio.h>
+#include <stdlib.h>
+
+int main (int argc, char **argv )
+{
+ puts ("Hello World 1!");
+ exit (0);
+}