Search:
GitHub Login
Preferences
My Notifications
Tickets
Wiki
GitHub
Timeline
Roadmap
Ticket Reports
Search
Context Navigation
Back to Ticket #17198
Ticket #17198
: get_system_values.c
File get_system_values.c,
224 bytes
(added by
yokota33@…
,
16 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
4
main
(){
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
}
Download in other formats:
Original Format