summaryrefslogtreecommitdiff
path: root/src/unistd/getlogin.c
blob: 462b5a6dcc9aad837d477fcf5d96e04d5d29ccea (plain)
1
2
3
4
5
6
7
8
9
10
11
#include "stddef.h"
#include "sys/types.h"
#include <unistd.h>

char * getlogin(void)
{
	return 0;
}
/*
POSIX(1)
*/