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




                                       
   
 
 
                    


                   
                                                     
 




                               


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


#ifdef 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