mirror of
https://github.com/RGBCube/serenity
synced 2025-05-17 10:45:06 +00:00
8 lines
102 B
C++
8 lines
102 B
C++
#include <stdio.h>
|
|
#include <unistd.h>
|
|
|
|
int main(int, char**)
|
|
{
|
|
puts(getlogin());
|
|
return 0;
|
|
}
|