source: rtems/c/src/exec/posix/src/unistd.c @ 5e9b32b

4.104.114.84.95
Last change on this file since 5e9b32b was 5e9b32b, checked in by Joel Sherrill <joel.sherrill@…>, on 09/26/95 at 19:27:15

posix support initially added

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