6 size_t confstr(int name
, char *buf
, size_t len
);
13 for (i
=0; i
<INT_MAX
; i
++) {
14 size
= confstr(i
, NULL
, (size_t) 0);
15 if (errno
!= B_BAD_VALUE
)
16 printf("%ld confstr %ld %s\n", i
, size
, strerror(errno
));
18 size
= confstr(i
, string
, sizeof(string
));
19 printf("%ld value %s\n", i
, string
);