mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-23 17:52:26 -05:00
e76312ab63
We're quite far from bash building, but we'll get there eventually!
8 lines
108 B
C++
8 lines
108 B
C++
#include <sys/times.h>
|
|
#include <assert.h>
|
|
|
|
clock_t times(struct tms*)
|
|
{
|
|
assert(false);
|
|
return 0;
|
|
}
|