ladybird/Userland/whoami.cpp

9 lines
102 B
C++
Raw Normal View History

2019-05-16 21:18:17 +03:00
#include <stdio.h>
#include <unistd.h>
int main(int, char**)
{
puts(getlogin());
return 0;
}