summaryrefslogblamecommitdiffstats
path: root/cpukit/libcsupport/src/issetugid.c
blob: 0cb870ea005f0c132456e27b7958a177a8c3042a (plain) (tree)
1
2
3
4
5
6
7
8




                                       
   
 
 



                   
                                                     



                                
                    
 
           
 
      
/**
 *  @file
 *
 *  @brief Dummy Version of BSD Routine
 *  @ingroup libcsupport
 */


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

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

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