15 lines
296 B
C
15 lines
296 B
C
|
#ifndef PROPAGATOR_TEST_COMMON_H
|
||
|
#define PROPAGATOR_TEST_COMMON_H
|
||
|
#include <stdio.h>
|
||
|
#include <stdarg.h>
|
||
|
|
||
|
void log_message(const char *msg, ...) {
|
||
|
va_list args;
|
||
|
va_start(args, msg);
|
||
|
vfprintf(stderr, msg, args);
|
||
|
fprintf(stderr, "\n");
|
||
|
fflush(stderr);
|
||
|
}
|
||
|
|
||
|
#endif /* PROPAGATOR_TEST_COMMON_H */
|