LibCore: Don't implement adjtime on Haiku
This commit is contained in:
parent
1e25ab956c
commit
0fa00a1b1e
Notes:
sideshowbarker
2024-07-19 16:50:53 +09:00
Author: https://github.com/ghost Commit: https://github.com/SerenityOS/serenity/commit/0fa00a1b1e1 Pull-request: https://github.com/SerenityOS/serenity/pull/20808 Reviewed-by: https://github.com/ADKaster Reviewed-by: https://github.com/Hendiadyoin1 Reviewed-by: https://github.com/diversys
2 changed files with 2 additions and 2 deletions
|
@ -1240,7 +1240,7 @@ ErrorOr<struct utsname> uname()
|
|||
return uts;
|
||||
}
|
||||
|
||||
#ifndef AK_OS_ANDROID
|
||||
#if !defined(AK_OS_ANDROID) && !defined(AK_OS_HAIKU)
|
||||
ErrorOr<void> adjtime(const struct timeval* delta, struct timeval* old_delta)
|
||||
{
|
||||
# ifdef AK_OS_SERENITY
|
||||
|
|
|
@ -188,7 +188,7 @@ ErrorOr<void> utime(StringView path, Optional<struct utimbuf>);
|
|||
ErrorOr<void> utimensat(int fd, StringView path, struct timespec const times[2], int flag);
|
||||
ErrorOr<struct utsname> uname();
|
||||
ErrorOr<Array<int, 2>> pipe2(int flags);
|
||||
#ifndef AK_OS_ANDROID
|
||||
#if !defined(AK_OS_ANDROID) && !defined(AK_OS_HAIKU)
|
||||
ErrorOr<void> adjtime(const struct timeval* delta, struct timeval* old_delta);
|
||||
#endif
|
||||
enum class SearchInPath {
|
||||
|
|
Loading…
Add table
Reference in a new issue