blob: 653f9cc78bda033b9d73f5d9e406bae73116d19b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#include <stdio.h>
#include <time.h>
int clock_gettime(clockid_t clk_id, struct timespec *tp) {
printf("BAD\n");
return 0;
}
/*
int main() {
printf("ok\n");
}
*/
|