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

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

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