git @ Cat's Eye Technologies Maentwrog / 60ed2d6
Avoid compiler warnings for -ansi -pedantic. Cat's Eye Technologies 11 years ago
2 changed file(s) with 3 addition(s) and 3 deletion(s). Raw diff Collapse all Expand all
173173 */
174174 void procstr(char *s)
175175 {
176 char *h=strdup(s);
176 char *h=(char *)strdup(s);
177177 char *g, *gg;
178178 g = h;
179179
211211 }
212212 new = (struct word *) malloc(sizeof(struct word));
213213 strcpy(new->name, name);
214 new->macro = strdup(macro);
214 new->macro = (char *)strdup(macro);
215215 new->fcn = fcn;
216216
217217 new->next = whead;
133133 */
134134 void procstr(char *s)
135135 {
136 char *h=strdup(s);
136 char *h=(char *)strdup(s);
137137 char *g;
138138 g = strtok(h, " ");
139139 while (g)