Bochs/bochs/misc/hello.cc
Bryce Denney daf2a9fb55 - add RCS Id to header of every file. This makes it easier to know what's
going on when someone sends in a modified file.
2001-10-03 13:10:38 +00:00

13 lines
143 B
C++

/*
* $Id: hello.cc,v 1.2 2001-10-03 13:10:38 bdenney Exp $
*/
#include <stdio.h>
int
main()
{
printf("hello world.\n");
return(0);
}