view 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
line wrap: on
line source

#include <stdio.h>

int main(int argc, char *argv[])
{
  printf("Hello world!\n");
  return 0;
}