mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-01 07:35:02 +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;
|
|
}
|
|
|