summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/src/issetugid.c
blob: 8d2b98cad11bfc282ca168962221bb64e6f411f2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/**
 *  @file
 *
 *  @brief Dummy Version of BSD Routine
 *  @ingroup libcsupport
 */


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

#if defined(RTEMS_NEWLIB) && !defined(HAVE_ISSETUGID)

/*
 *  Prototype to avoid warnings
 */
int issetugid (void);

/**
 *  Dummy version of BSD routine
 */
int issetugid (void)
{
  return 0;
}
#endif