147892Sbostic/*- 2*61135Sbostic * Copyright (c) 1991, 1993 3*61135Sbostic * The Regents of the University of California. All rights reserved. 447892Sbostic * 547892Sbostic * This code is derived from software contributed to Berkeley by 647892Sbostic * William Jolitz. 747892Sbostic * 847894Sbostic * %sccs.include.redist.c% 947892Sbostic */ 1047892Sbostic 1147892Sbostic#if defined(LIBC_SCCS) && !defined(lint) 12*61135Sbostic .asciz "@(#)setlogin.s 8.1 (Berkeley) 06/04/93" 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