mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-06 16:45:03 +00:00
LibC: Implement the _Exit function
libstdc++v3 checks whether this function is available and makes certain functions available in the std namespace if so.
This commit is contained in:
committed by
Andreas Kling
parent
4c6a91d0c0
commit
9ffc2fe840
@@ -1180,3 +1180,8 @@ int unlockpt([[maybe_unused]] int fd)
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
void _Exit(int status)
|
||||
{
|
||||
_exit(status);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user