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