banan-os/userspace/libraries/LibC/sys/times.cpp

10 lines
125 B
C++

#include <sys/times.h>
#include <BAN/Assert.h>
clock_t times(struct tms* buffer)
{
(void)buffer;
ASSERT_NOT_REACHED();
}