mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-12 17:37:53 +03:00
13 lines
228 B
C++
13 lines
228 B
C++
|
#include <LibC/unistd.h>
|
||
|
#include <LibC/stdio.h>
|
||
|
|
||
|
int main(int c, char** v)
|
||
|
{
|
||
|
uid_t uid = getuid();
|
||
|
gid_t gid = getgid();
|
||
|
pid_t pid = getpid();
|
||
|
printf("uid=%u, gid=%u, pid=%u\n", uid, gid, pid);
|
||
|
return 0;
|
||
|
}
|
||
|
|