[comp.sources.wanted] Bug in Gnu_helloworld.c Release 1.0

applix@runxtsa.runx.oz.au (Andrew Morton) (09/25/89)

   There is a bug in Gnu_helloworld.c. K&R (p7) specifically states
that the output should be of the form

	printf("hello, world\n");

consequently, the following change should be applied:

< 	char	c, *bonk = "Hello world\n";
> 	char	c, *bonk = "hello, world\n";