some coverity fixes.
[minix.git] / lib / libc / compat-43 / getdtablesize.c
blobeff7c18477fc41d1d4ef8c4bd4ba04c02de45a18
1 /* $NetBSD: getdtablesize.c,v 1.9 2003/07/26 19:24:41 salo Exp $ */
3 /*
4 * Written by J.T. Conklin <jtc@NetBSD.org>.
5 * Public domain.
6 */
8 #include <sys/cdefs.h>
9 #if defined(LIBC_SCCS) && !defined(lint)
10 __RCSID("$NetBSD: getdtablesize.c,v 1.9 2003/07/26 19:24:41 salo Exp $");
11 #endif /* LIBC_SCCS and not lint */
13 #include "namespace.h"
14 #include <unistd.h>
16 int
17 getdtablesize()
19 return ((int)sysconf(_SC_OPEN_MAX));