source: rtems/cpukit/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
RevLine 
[7f72217e]1/*
[eb5a7e07]2 *  $Id$
[5e9b32b]3 */
4
[e72d995a]5#include <time.h>
[5e9b32b]6#include <unistd.h>
7
[f4719d5a]8#include <rtems/system.h>
9
[aac34f7b]10/*PAGE
11 *
[5e9b32b]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.