summaryrefslogtreecommitdiff
path: root/libc/unistd
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-02-09 06:43:59 +0000
committerEric Andersen <andersen@codepoet.org>2001-02-09 06:43:59 +0000
commitd064d3e32bec66e5f8cc474be6fb0b0168f73bee (patch)
tree9dcc83fdec23a3bb1c748557ba08ab83fb4e58d9 /libc/unistd
parent411597d4f47de6b37275ee4fdf9fc45cc2a30fcb (diff)
Implement getdtablesize(), which is used by the rpc crap.
-Erik
Diffstat (limited to 'libc/unistd')
-rw-r--r--libc/unistd/sysconf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/unistd/sysconf.c b/libc/unistd/sysconf.c
index 5d8c7fc4b..50d8e4bb5 100644
--- a/libc/unistd/sysconf.c
+++ b/libc/unistd/sysconf.c
@@ -98,7 +98,7 @@ long int sysconf(int name)
#endif
case _SC_OPEN_MAX:
-#if 0
+#if 1
RETURN_FUNCTION(getdtablesize());
#else
RETURN_NEG_1;