Home | History | Annotate | Line # | Download | only in compat
issetugid.c revision 1.1
      1  1.1  bjh21 /*	$NetBSD: issetugid.c,v 1.1 2002/04/18 15:31:53 bjh21 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.1  bjh21 #include "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