source:
rtems/c/src/exec/posix/src/unistd.c
@
591d45e
Last change on this file since 591d45e was eb5a7e07, checked in by Joel Sherrill <joel.sherrill@…>, on 10/06/95 at 20:48:38 | |
---|---|
|
|
File size: 225 bytes |
Line | |
---|---|
1 | /* unistd.c |
2 | * |
3 | * $Id$ |
4 | */ |
5 | |
6 | #include <unistd.h> |
7 | |
8 | #ifdef NOT_IMPLEMENTED_YET |
9 | |
10 | /* |
11 | * 4.8.1 Get Configurable System Variables, P1003.1b-1993, p. 95 |
12 | */ |
13 | |
14 | long sysconf( |
15 | int name |
16 | ) |
17 | { |
18 | return POSIX_NOT_IMPLEMENTED(); |
19 | } |
20 | |
21 | #endif |
Note: See TracBrowser
for help on using the repository browser.