Files
Arquivotheca.SunOS-4.1.4/usr.etc/suninstall/lib/suser.c
seta75D ff309bfe1c Init
2021-10-11 18:37:13 -03:00

29 lines
458 B
C

#ifndef lint
#ifdef SunB1
static char mls_sccsid[] = "@(#)suser.c 1.1 94/10/31 SMI; SunOS MLS";
#else
static char sccsid[] = "@(#)suser.c 1.1 94/10/31 SMI";
#endif /* SunB1 */
#endif lint
/*
* Copyright (c) 1989 Sun Microsystems, Inc.
*/
/*
* Name: suser()
*
* Description: Return 1 is the caller is the super-user and 0
* otherwise.
*/
int
suser()
{
#ifdef TEST_JIG
return(1);
#else
return(getuid() == 0 ? 1 : 0);
#endif
} /* end suser() */