1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 01:17:46 +00:00

LibC: Make prctl() a varargs function

This commit is contained in:
Tim Schumacher 2022-03-28 21:35:23 +02:00 committed by Brian Gianforcaro
parent d9d299f884
commit aa7b6852ce
2 changed files with 10 additions and 2 deletions

View file

@ -12,6 +12,6 @@
__BEGIN_DECLS
int prctl(int option, uintptr_t arg1, uintptr_t arg2);
int prctl(int option, ...);
__END_DECLS