comparison sources/root-filesystem/src/hello.c @ 1676:0f4499211cfa

Move hello.c into /src in the root filesystem so the instructions in the README to try building it aren't wrong.
author Rob Landley <rob@landley.net>
date Sun, 17 Aug 2014 18:12:50 -0500
parents sources/toys/hello.c@8fb80545fe84
children
comparison
equal deleted inserted replaced
1675:a87931846137 1676:0f4499211cfa
1 #include <stdio.h>
2
3 int main(int argc, char *argv[])
4 {
5 printf("Hello world!\n");
6 return 0;
7 }