blob: 8e65f2a4181f53754ee71c3412ef644e8da9d13f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/* $NetBSD: issetugid.c,v 1.2 2003/10/27 00:12:43 lukem Exp $ */
/*
* Written by Ben Harris, 2002
* This file is in the Public Domain
*/
#include "nbtool_config.h"
#if !HAVE_ISSETUGID
int
issetugid(void)
{
/*
* Assume that anything linked against libnbcompat will be installed
* without special privileges.
*/
return 0;
}
#endif
|