mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-03 14:50:18 +00:00
LibC: Add stubs for 'removexattr()' and friends
This add stubs for 'removexattr()', 'lremovexattr()', and 'fremovexattr()'. These are needed by GLib version 2.73.3.
This commit is contained in:
parent
f99eb2d11b
commit
54435dea59
Notes:
sideshowbarker
2024-07-17 07:40:22 +09:00
Author: https://github.com/kennethmyhra
Commit: 54435dea59
Pull-request: https://github.com/SerenityOS/serenity/pull/15049
Reviewed-by: https://github.com/linusg ✅
2 changed files with 24 additions and 0 deletions
|
@ -1,5 +1,6 @@
|
|||
/*
|
||||
* Copyright (c) 2021, the SerenityOS developers.
|
||||
* Copyright (c) 2022, Kenneth Myhra <kennethmyhra@serenityos.org>.
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-2-Clause
|
||||
*/
|
||||
|
@ -60,3 +61,21 @@ ssize_t flistxattr(int, char*, size_t)
|
|||
dbgln("FIXME: Implement flistxattr()");
|
||||
return 0;
|
||||
}
|
||||
|
||||
int removexattr(char const*, char const*)
|
||||
{
|
||||
dbgln("FIXME: Implement removexattr()");
|
||||
return 0;
|
||||
}
|
||||
|
||||
int lremovexattr(char const*, char const*)
|
||||
{
|
||||
dbgln("FIXME: Implement lremovexattr()");
|
||||
return 0;
|
||||
}
|
||||
|
||||
int fremovexattr(int, char const*)
|
||||
{
|
||||
dbgln("FIXME: Implement fremovexattr()");
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue