view sources/toys/hello.c @ 1139:2c6d799f0451

Fix a dangling symlink that confuses root-filesystem.sh, and add some comments.
author Rob Landley <rob@landley.net>
date Tue, 22 Jun 2010 17:52:27 -0500
parents 8fb80545fe84
children
line wrap: on
line source

#include <stdio.h>

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