arm: protect state after signal handler
[minix.git] / tools / compat / issetugid.c
blob8e65f2a4181f53754ee71c3412ef644e8da9d13f
1 /* $NetBSD: issetugid.c,v 1.2 2003/10/27 00:12:43 lukem Exp $ */
3 /*
4 * Written by Ben Harris, 2002
5 * This file is in the Public Domain
6 */
8 #include "nbtool_config.h"
10 #if !HAVE_ISSETUGID
11 int
12 issetugid(void)
16 * Assume that anything linked against libnbcompat will be installed
17 * without special privileges.
19 return 0;
21 #endif