mirror of
https://github.com/SerenityOS/serenity
synced 2026-05-10 00:52:28 +02: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;
|
|
}
|