mirror of
https://github.com/SerenityOS/serenity
synced 2026-05-10 00:52:28 +02:00
9 lines
102 B
C++
9 lines
102 B
C++
#include <stdio.h>
|
|
#include <unistd.h>
|
|
|
|
int main(int, char**)
|
|
{
|
|
puts(getlogin());
|
|
return 0;
|
|
}
|