summaryrefslogtreecommitdiff
path: root/distrib/utils/libhack/utmp.c
blob: 9d5d12210a7e715f79d09e3e66451934df392a7f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/*	$NetBSD: utmp.c,v 1.3 1999/06/21 02:32:20 danw Exp $	*/

/*
 * Written by Gordon W. Ross <gwr@netbsd.org>
 * Public domain.
 */

/* Simplified (do nothing:) */
#include <sys/types.h>
#include <utmp.h>
#include <util.h>

void
login(ut)
	const struct utmp *ut;
{
}

int
logout(line)
	const char *line;
{
	return(0);
}


void
logwtmp(line, name, host)
	const char *line, *name, *host;
{
}