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