Ticket #17198: get_system_values.c

File get_system_values.c, 224 bytes (added by yokota33@…, 15 years ago)

Can anybody compile, run and tell the result of this file (on darwin > 7)?

Line 
1#include <stdio.h>
2#include <unistd.h>
3
4main(){
5        printf("sysconf(_SC_GETGR_R_SIZE_MAX) = %d\n", sysconf(_SC_GETGR_R_SIZE_MAX));
6        printf("sysconf(_SC_GETPW_R_SIZE_MAX) = %d\n", sysconf(_SC_GETPW_R_SIZE_MAX));
7}