/* * libhello.c - The hello library */ #include void hello(const char *person) { printf("Hello %s\n", person); }