parent
aef9bd6357
commit
e17ee831a7
|
@ -45,6 +45,7 @@ set(LIBC_SOURCES
|
|||
sys/stat.cpp
|
||||
sys/statvfs.cpp
|
||||
sys/time.cpp
|
||||
sys/times.cpp
|
||||
sys/uio.cpp
|
||||
sys/utsname.cpp
|
||||
sys/wait.cpp
|
||||
|
|
|
@ -0,0 +1,9 @@
|
|||
#include <sys/times.h>
|
||||
|
||||
#include <BAN/Assert.h>
|
||||
|
||||
clock_t times(struct tms* buffer)
|
||||
{
|
||||
(void)buffer;
|
||||
ASSERT_NOT_REACHED();
|
||||
}
|
Loading…
Reference in New Issue