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