view sources/toys/hello.c @ 791:b9fa1da23205

Remove patch that got committed upstream.
author Rob Landley <rob@landley.net>
date Mon, 06 Jul 2009 05:27:12 -0500
parents 8fb80545fe84
children
line wrap: on
line source

#include <stdio.h>

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