mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 13:57:35 +00:00
LibC: Change a couple of ASSERT_NOT_REACHED() to TODO()
Just for semantic correctness and better visibility of those unimplemented stub functions.
This commit is contained in:
parent
d64d2ff07b
commit
b42f0b9650
8 changed files with 21 additions and 14 deletions
|
@ -366,7 +366,8 @@ int nanosleep(const struct timespec* requested_sleep, struct timespec* remaining
|
|||
|
||||
int clock_getres(clockid_t, struct timespec*)
|
||||
{
|
||||
ASSERT_NOT_REACHED();
|
||||
dbgln("FIXME: Implement clock_getres()");
|
||||
TODO();
|
||||
}
|
||||
|
||||
double difftime(time_t t1, time_t t0)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue