From 5e9b32b439627068a0292370fe595220dbfc95a0 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Tue, 26 Sep 1995 19:27:15 +0000 Subject: posix support initially added --- c/src/exec/posix/src/unistd.c | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 c/src/exec/posix/src/unistd.c (limited to 'c/src/exec/posix/src/unistd.c') diff --git a/c/src/exec/posix/src/unistd.c b/c/src/exec/posix/src/unistd.c new file mode 100644 index 0000000000..ecda95ebe3 --- /dev/null +++ b/c/src/exec/posix/src/unistd.c @@ -0,0 +1,20 @@ +/* unistd.c + * + */ + +#include + +#ifdef NOT_IMPLEMENTED_YET + +/* + * 4.8.1 Get Configurable System Variables, P1003.1b-1993, p. 95 + */ + +long sysconf( + int name +) +{ + return POSIX_NOT_IMPLEMENTED(); +} + +#endif -- cgit v1.2.3