summaryrefslogtreecommitdiffstats
path: root/c/src/exec/posix/src/unistd.c
blob: 1c99fd61b63f4a5c8fb27373a17fc4aedf6c5168 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* unistd.c
 *
 *  $Id$
 */

#include <unistd.h>

#include <rtems/system.h>

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

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