blob: 6937361ec6f545f2c6d96b504d88164bb0a002b6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/*
* 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;
}
|