xref: /csrg-svn/lib/libc/i386/sys/setlogin.s (revision 47894)
147892Sbostic/*-
2*47894Sbostic * Copyright (c) 1991 The Regents of the University of California.
347892Sbostic * All rights reserved.
447892Sbostic *
547892Sbostic * This code is derived from software contributed to Berkeley by
647892Sbostic * William Jolitz.
747892Sbostic *
8*47894Sbostic * %sccs.include.redist.c%
947892Sbostic */
1047892Sbostic
1147892Sbostic#if defined(LIBC_SCCS) && !defined(lint)
12*47894Sbostic	.asciz "@(#)setlogin.s	5.2 (Berkeley) 04/12/91"
1347892Sbostic#endif /* LIBC_SCCS and not lint */
1447892Sbostic
1547892Sbostic#include "SYS.h"
1647892Sbostic
1747892Sbostic.globl	__logname_valid		/* in getlogin() */
1847892Sbostic
1947892SbosticSYSCALL(setlogin)
2047892Sbostic	movl	$0,__logname_valid
2147892Sbostic	ret				/* setlogin(name) */
22