Blame os/unknown.c

c95639
c95639
/* mlogin: minimalistic login                */
c95639
/* Copyright (c) 2019  Ørjan Malde           */
c95639
/* Released under LGPL, see COPYRIGHT.MLOGIN */
c95639
c95639
#include <unistd.h>
c95639
#include <pwd.h>
c95639
c95639
int switch_user_context(struct passwd* pwd, const char* username)
c95639
{
c95639
	#warning port me!
c95639
c95639
	(void)username;
c95639
	(void)pwd;
c95639
c95639
	return 0;
c95639
}