view examples/hello.c @ 1055:999c4261716b

* src/pthread.cxx (pthread_self_info): Just add some comments so no-one's tempted to uncomment assert. (pthread_create): Verify that self is a valid POSIX thread when needed.
author jlarmour
date Wed, 18 Jun 2003 04:59:28 +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;
}