view examples/hello.c @ 422:645053dc2f10

Increase default number of buffers.
author gthomas
date Thu, 14 Nov 2002 23:33:36 +0000
parents ead06911cbae
children
line wrap: on
line source

/* this is a simple hello world program */
#include <stdio.h>

int main(void)
{
  printf("Hello, eCos world!\n");
  return 0;
}