From cd59cd8d3807e6eb33c4b095014e267a7c54004e Mon Sep 17 00:00:00 2001 From: kleink Date: Mon, 22 Mar 1999 19:18:10 +0000 Subject: Support {FILESIZEBITS}. --- usr.bin/getconf/getconf.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'usr.bin') diff --git a/usr.bin/getconf/getconf.c b/usr.bin/getconf/getconf.c index abb6fa58bb3..0ebabe356c8 100644 --- a/usr.bin/getconf/getconf.c +++ b/usr.bin/getconf/getconf.c @@ -1,4 +1,4 @@ -/* $NetBSD: getconf.c,v 1.8 1998/08/03 14:48:40 kleink Exp $ */ +/* $NetBSD: getconf.c,v 1.9 1999/03/22 19:18:10 kleink Exp $ */ /*- * Copyright (c) 1996, 1998 The NetBSD Foundation, Inc. @@ -38,7 +38,7 @@ #include #ifndef lint -__RCSID("$NetBSD: getconf.c,v 1.8 1998/08/03 14:48:40 kleink Exp $"); +__RCSID("$NetBSD: getconf.c,v 1.9 1999/03/22 19:18:10 kleink Exp $"); #endif /* not lint */ #include @@ -145,6 +145,9 @@ const struct conf_variable conf_table[] = { "IOV_MAX", SYSCONF, _SC_IOV_MAX }, { "PAGE_SIZE", SYSCONF, _SC_PAGE_SIZE }, { "_XOPEN_SHM", SYSCONF, _SC_XOPEN_SHM }, + + /* X/Open CAE Spec. Issue 5 Version 2 Configurable System Variables */ + { "FILESIZEBITS", PATHCONF, _PC_FILESIZEBITS }, { NULL } }; -- cgit