
Listing 1

/*
 * Greetings in Classic C
 */
main()
	{
	greet("Dan");
	}

greet(s)
	char *s;
	{
	printf("Greetings, %s!\n", s);
	}

