mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 09:14:58 +00:00
LibC: Stub out posix_memalign()
This commit is contained in:
parent
ab878576bb
commit
02c18bf6de
2 changed files with 11 additions and 0 deletions
|
@ -1335,3 +1335,12 @@ void _Exit(int status)
|
|||
{
|
||||
_exit(status);
|
||||
}
|
||||
|
||||
// https://pubs.opengroup.org/onlinepubs/9699919799/functions/posix_memalign.html
|
||||
int posix_memalign(void** memptr, size_t alignment, size_t size)
|
||||
{
|
||||
(void)memptr;
|
||||
(void)alignment;
|
||||
(void)size;
|
||||
TODO();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue