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

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