summaryrefslogtreecommitdiff
path: root/package/helloworld/src
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2016-12-08 03:06:31 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2016-12-08 03:06:31 +0100
commite183d9ba8e8bc5309fa145da1809c7e78489f05b (patch)
tree817bac45229ddfd76d7b89a3cb31d4bb517ccce9 /package/helloworld/src
parent5d1fa7fd4ad18efaa19259fb6277de020057cef5 (diff)
new package helloworld, add a package for regression testing with embedded-test
Diffstat (limited to 'package/helloworld/src')
-rw-r--r--package/helloworld/src/helloworld.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/package/helloworld/src/helloworld.c b/package/helloworld/src/helloworld.c
new file mode 100644
index 000000000..232880377
--- /dev/null
+++ b/package/helloworld/src/helloworld.c
@@ -0,0 +1,6 @@
+#include <stdio.h>
+
+int main() {
+ printf("Hello World\n");
+ return 0;
+}