mirror of
https://github.com/wolfcw/libfaketime.git
synced 2026-05-17 00:26:16 +03:00
9 lines
254 B
C
9 lines
254 B
C
#include "snippets/include_headers.h"
|
|
#define where "libSNIPPET_NAME"
|
|
void SNIPPET_NAME_as_needed() {
|
|
printf(" called SNIPPET_NAME_as_needed() \n");
|
|
}
|
|
static __attribute__((constructor)) void init_SNIPPET_NAME() {
|
|
#include "snippets/SNIPPET_NAME.c"
|
|
}
|