Home | History | Annotate | Line # | Download | only in compat
      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