summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/src/issetugid.c
blob: 84a2d9ce61c3e84dc807c694e7a12aca99fd0edb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 *  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