Lines Matching refs:tmp
48 char *tmp;
54 tmp = calloc(MS+n+1, sizeof (char));
55 (void) strcpy(tmp, DEFMSG);
56 (void) strcat(tmp, defmesg ? defmesg : INVINP);
62 tmp = calloc(MS+n+strlen(defmesg)+2, sizeof (char));
63 (void) strcpy(tmp, DEFMSG);
64 (void) strcat(tmp, defmesg);
65 (void) strcat(tmp, "\n");
67 (void) strcat(tmp, error);
70 tmp = calloc(MS+n+strlen(defmesg)+2, sizeof (char));
71 (void) strcpy(tmp, DEFMSG);
72 (void) strcat(tmp, error);
74 tmp[MS-1+n-1] = '\0';
75 (void) strcat(tmp, "\n");
76 (void) strcat(tmp, defmesg);
78 tmp = calloc(MS+n+1, sizeof (char));
79 (void) strcpy(tmp, DEFMSG);
80 (void) strcat(tmp, error);
84 tmp = calloc(MS+n+1, sizeof (char));
85 (void) strcpy(tmp, DEFMSG);
86 (void) strcat(tmp, error);
88 (void) puttext(fp, tmp, ckindent, ckwidth);
90 free(tmp);