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

#include <time.h>
#include <unistd.h>

#include <rtems/system.h>

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

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