for (code = 0; code < MAXPARMS; code++)
parms[code] = NULL;
- instp = typep = notifier = NULL;
tfile = (FILE *) 0;
if (!aname)
aname = (char *)bozo_fileName;
tfile = fopen(aname, "r");
if (!tfile)
return 0; /* -1 */
- instp = (char *)malloc(BOZO_BSSIZE);
- typep = (char *)malloc(BOZO_BSSIZE);
- notifier = notp = (char *)malloc(BOZO_BSSIZE);
+ instp = malloc(BOZO_BSSIZE);
+ typep = malloc(BOZO_BSSIZE);
+ notifier = notp = malloc(BOZO_BSSIZE);
while (1) {
/* ok, read lines giving parms and such from the file */
tp = fgets(tbuffer, sizeof(tbuffer), tfile);