1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 19:27:44 +00:00

sort: Use pledge()

This commit is contained in:
Andreas Kling 2020-02-18 11:02:36 +01:00
parent 4f7081289c
commit 257e7f022a

View file

@ -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);