mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 19:27:44 +00:00
sort: Use pledge()
This commit is contained in:
parent
4f7081289c
commit
257e7f022a
1 changed files with 5 additions and 0 deletions
|
@ -32,6 +32,11 @@
|
|||
|
||||
int main(int argc, char** argv)
|
||||
{
|
||||
if (pledge("stdio", nullptr) > 0) {
|
||||
perror("pledge");
|
||||
return 1;
|
||||
}
|
||||
|
||||
UNUSED_PARAM(argc);
|
||||
UNUSED_PARAM(argv);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue