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