source: rtems/c/src/exec/posix/src/sysconf.c @ 80fd699

4.104.114.84.95
Last change on this file since 80fd699 was 80fd699, checked in by Joel Sherrill <joel.sherrill@…>, on 11/15/99 at 22:19:51

Removed nanosleep() since it is now in its own file.

  • Property mode set to 100644
File size: 229 bytes
Line 
1/*
2 *  $Id$
3 */
4
5#include <time.h>
6#include <unistd.h>
7
8#include <rtems/system.h>
9
10/*PAGE
11 *
12 *  4.8.1 Get Configurable System Variables, P1003.1b-1993, p. 95
13 */
14
15long sysconf(
16  int name
17)
18{
19  return POSIX_NOT_IMPLEMENTED();
20}
Note: See TracBrowser for help on using the repository browser.