MAX_INT_LEN
char tod_str[MAX_INT_LEN];
(void) snprintf(tod_str, MAX_INT_LEN, "%d", tod);
char subid_str[MAX_INT_LEN];
if ((*auth_user = malloc(MAX_INT_LEN)) == NULL) {
(void) snprintf(*auth_user, MAX_INT_LEN, "%d",
char numbuf[MAX_INT_LEN], *strp;
if (snprintf(numbuf, MAX_INT_LEN, "%d", value) >= MAX_INT_LEN)
char nb[MAX_INT_LEN]; \
if (snprintf(nb, MAX_INT_LEN, "%d", (from)) >= MAX_INT_LEN) \