ladybird/LibC/times.cpp
Andreas Kling e76312ab63 Lots of minor compat stuff while seeing if bash would build.
We're quite far from bash building, but we'll get there eventually!
2018-11-05 16:40:48 +01:00

8 lines
108 B
C++

#include <sys/times.h>
#include <assert.h>
clock_t times(struct tms*)
{
assert(false);
return 0;
}