2003-10-27 03:12:41 +03:00
|
|
|
/* $NetBSD: issetugid.c,v 1.2 2003/10/27 00:12:43 lukem Exp $ */
|
2002-04-18 19:31:51 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Written by Ben Harris, 2002
|
|
|
|
* This file is in the Public Domain
|
|
|
|
*/
|
|
|
|
|
2003-10-27 03:12:41 +03:00
|
|
|
#include "nbtool_config.h"
|
2002-04-18 19:31:51 +04:00
|
|
|
|
|
|
|
#if !HAVE_ISSETUGID
|
|
|
|
int
|
|
|
|
issetugid(void)
|
|
|
|
{
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Assume that anything linked against libnbcompat will be installed
|
|
|
|
* without special privileges.
|
|
|
|
*/
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|