mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 02:25:18 +03:00
8 lines
147 B
C
8 lines
147 B
C
|
#include <stdio.h>
|
||
|
#include <cap-ng.h>
|
||
|
|
||
|
int main(int argc, char *argv[])
|
||
|
{
|
||
|
if(capng_have_permitted_capabilities() > -1)
|
||
|
printf("ok");
|
||
|
}
|