summaryrefslogtreecommitdiffstats
path: root/dev-template/dj/hello.c
diff options
context:
space:
mode:
authorDJ Delorie <dj@delorie.com>2011-06-06 23:53:49 -0400
committerDJ Delorie <dj@delorie.com>2011-06-06 23:53:49 -0400
commit694338293d69452c1a1efb09fef490b5c799de00 (patch)
tree4418f058a5a9b430907d6ac0d71aa046d0af058f /dev-template/dj/hello.c
parenta70abd5936cdae217f378ea28615ee50c4661839 (diff)
downloadbootstrap.git.DONOTUSE-694338293d69452c1a1efb09fef490b5c799de00.tar.gz
bootstrap.git.DONOTUSE-694338293d69452c1a1efb09fef490b5c799de00.tar.xz
bootstrap.git.DONOTUSE-694338293d69452c1a1efb09fef490b5c799de00.zip
Add dev-template
A few files just to give the user a shell when the machine boots.
Diffstat (limited to 'dev-template/dj/hello.c')
-rw-r--r--dev-template/dj/hello.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/dev-template/dj/hello.c b/dev-template/dj/hello.c
new file mode 100644
index 0000000..a2a90a5
--- /dev/null
+++ b/dev-template/dj/hello.c
@@ -0,0 +1,8 @@
+#include <stdio.h>
+
+int
+main()
+{
+ printf("Hello, hard world!\n");
+ return 0;
+}