10 lines
150 B
C
10 lines
150 B
C
|
|
#include <fcntl.h>
|
||
|
|
#include <stdio.h>
|
||
|
|
#include <stdlib.h>
|
||
|
|
#include <unistd.h>
|
||
|
|
|
||
|
|
int main(int argc, char** argv)
|
||
|
|
{
|
||
|
|
puts(getlogin());
|
||
|
|
return 0;
|
||
|
|
}
|