kernel - support dummy reallocblks in devfs
[dragonfly.git] / contrib / opie / libmissing / sysconf.c
blobfb3a5bc75a5418e4b597d1535f58e31f64939c44
1 /* sysconf.c: A (partial) replacement for the sysconf function
3 %%% copyright-cmetz
4 This software is Copyright 1996 by Craig Metz, All Rights Reserved.
5 The Inner Net License Version 2 applies to this software.
6 You should have received a copy of the license with this software. If
7 you didn't get a copy, you may request one from <license@inner.net>.
9 History:
11 Created by cmetz for OPIE 2.3.
13 #include "opie_cfg.h"
14 #if HAVE_SYS_PARAM_H
15 #include <sys/param.h>
16 #endif /* HAVE_SYS_PARAM_H */
17 #include "opie.h"
19 long sysconf(int name)
21 switch(name) {
22 case _SC_OPEN_MAX:
23 #if HAVE_GETDTABLESIZE
24 return getdtablesize();
25 #else /* HAVE_GETDTABLESIZE */
26 #error Need getdtablesize() to build a replacement sysconf()
27 #endif /* HAVE_GETDTABLESIZE */
29 return -1;