search for: have_strtoumax

Displaying 1 result from an estimated 1 matches for "have_strtoumax".

2013 May 13
0
[klibc:sysconf] Framework and trivial implementation of sysconf(3)
...7 +++++-- usr/klibc/Kbuild | 3 ++- usr/klibc/sysconf/sysconf.c | 8 ++++++++ 5 files changed, 56 insertions(+), 4 deletions(-) diff --git a/usr/dash/config.h b/usr/dash/config.h index 35230c7..9757009 100644 --- a/usr/dash/config.h +++ b/usr/dash/config.h @@ -81,7 +81,7 @@ #define HAVE_STRTOUMAX 1 /* Define to 1 if you have the `sysconf' function. */ -/* #undef HAVE_SYSCONF */ +#define HAVE_SYSCONF 1 /* Define to 1 if you have the <sys/stat.h> header file. */ #define HAVE_SYS_STAT_H 1 diff --git a/usr/include/sys/sysconf.h b/usr/include/sys/sysconf.h new file mode 100644 i...