mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-30 04:39:06 +00:00
LibC, LibM: Add functions needed to compile python3
This commit is contained in:
parent
3042c942d8
commit
e7affa24dc
Notes:
sideshowbarker
2024-07-19 11:15:36 +09:00
Author: https://github.com/lnzero1dev
Commit: e7affa24dc
Pull-request: https://github.com/SerenityOS/serenity/pull/763
Reviewed-by: https://github.com/awesomekling ✅
Reviewed-by: https://github.com/bugaevc
7 changed files with 136 additions and 1 deletions
|
@ -134,4 +134,18 @@ int clock_nanosleep(clockid_t clock_id, int flags, const struct timespec* reques
|
|||
__RETURN_WITH_ERRNO(rc, rc, -1);
|
||||
}
|
||||
|
||||
int clock_getres(clockid_t, struct timespec*)
|
||||
{
|
||||
ASSERT_NOT_REACHED();
|
||||
}
|
||||
|
||||
struct tm* gmtime_r(const time_t*, struct tm*)
|
||||
{
|
||||
ASSERT_NOT_REACHED();
|
||||
}
|
||||
|
||||
struct tm* localtime_r(const time_t*, struct tm*)
|
||||
{
|
||||
ASSERT_NOT_REACHED();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue