[BACK]Return to gnum4.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / m4

Diff for /src/usr.bin/m4/gnum4.c between version 1.30 and 1.31

version 1.30, 2005/05/21 10:33:48 version 1.31, 2005/05/29 18:44:36
Line 551 
Line 551 
                 pbstr(getstring());                  pbstr(getstring());
         }          }
 }  }
   
   void
   getdivfile(const char *name)
   {
           FILE *f;
           int c;
   
           f = fopen(name, "r");
           if (!f)
                   return;
   
           while ((c = getc(f))!= EOF)
                   putc(c, active);
           (void) fclose(f);
   }

Legend:
Removed from v.1.30  
changed lines
  Added in v.1.31