summaryrefslogtreecommitdiff
path: root/lib/libc/unistd/getlogin_r.c
blob: 018453fbcc5eda8d806f43f986f2fbc8bab750c6 (plain)
1
2
3
4
5
6
7
8
9
#include <unistd.h> // for getlogin_r, size_t

int getlogin_r(char *name, size_t namesize)
{
	(void)name;
	(void)namesize;
	// TODO
	return 0;
}