2025-02-22 12:11:30 +01:00

12 lines
177 B
C

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