summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/src/issetugid.c
blob: 2e10fd208a722c8344441ba4a35f7ecd99568108 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
 * Dummy version of BSD routine
 *
 *  $Id$
 */

#if HAVE_CONFIG_H
#include "config.h"
#endif

#if defined(RTEMS_NEWLIB) && !defined(HAVE_ISSETUGID)
int
issetugid (void)
{
	return 0;
}
#endif