summaryrefslogblamecommitdiffstats
path: root/c/src/exec/posix/src/unistd.c
blob: 909d89f923b90e4c172b98064c869c94d2973e0c (plain) (tree)
1
2
3

           
        

















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

#include <unistd.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