blob: 7d0eca340db8526778efe6674569626e86081f16 [file] [log] [blame]
/*
* libhello.c - The hello library
*/
#include <stdio.h>
void hello(const char *person)
{
printf("Good morning %s\n", person);
}