12 lines
154 B
C
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;
|
|
}
|