1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 01:37:36 +00:00

LibSystem: Add pledge() and unveil() wrappers that return ErrorOr<void>

These will be more ergonomic to use together with TRY(). :^)
This commit is contained in:
Andreas Kling 2021-11-22 15:43:57 +01:00
parent 0d679bf348
commit dc486fa3f9
3 changed files with 53 additions and 0 deletions

View file

@ -1,4 +1,5 @@
set(SOURCES
Wrappers.cpp
syscall.cpp
)