gctf2023/pwn/flipper/dist/userspace/libc/src/time.c
2023-11-24 13:11:34 -05:00

12 lines
154 B
C

#include "time.h"
/**
* function stub
* posix compatible signature - do not change the signature!
*/
clock_t clock(void)
{
return (clock_t) -1U;
}