mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-27 19:59:17 +00:00
9 lines
108 B
C++
9 lines
108 B
C++
#include <sys/times.h>
|
|
#include <assert.h>
|
|
|
|
clock_t times(struct tms*)
|
|
{
|
|
assert(false);
|
|
return 0;
|
|
}
|