1
0
Fork 0
shadow/tests/common/time_0.c
Daniel Baumann 09a180ea01
Adding upstream version 1:4.17.4.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-22 05:06:56 +02:00

16 lines
198 B
C

/*
* gcc time_0.c -o time_0.so -shared
* LD_PRELOAD=./time_0.so ./test
*/
#include <stdio.h>
#include <time.h>
time_t time (time_t *t)
{
fprintf (stderr, "time 0\n");
return (time_t)0;
}