summaryrefslogblamecommitdiffstats
path: root/c/src/exec/posix/src/unistd.c
blob: f70d065ce3585950ae241f59f31f8b8555da0d49 (plain) (tree)
1
2
3
4
5
6
7
8
9

           
        



                   

                         













                                                                 
/* unistd.c
 *
 *  $Id$
 */

#include <unistd.h>

#include <rtems/system.h>

#ifdef NOT_IMPLEMENTED_YET

/*
 *  4.8.1 Get Configurable System Variables, P1003.1b-1993, p. 95
 */

long sysconf(
  int name
)
{
  return POSIX_NOT_IMPLEMENTED();
}

#endif