gctf2023/pwn/flipper/dist/userspace/libc/src/time.c

12 lines
154 B
C
Raw Normal View History

2023-11-24 18:11:34 +00:00
#include "time.h"
/**
* function stub
* posix compatible signature - do not change the signature!
*/
clock_t clock(void)
{
return (clock_t) -1U;
}