/* testlib.c */ #include "testlib.h" #include #ifndef MESSAGE #define MESSAGE "Hello from testlib!" #endif void print_message() { printf("%s\n", MESSAGE); }