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

Diff for /src/usr.bin/lam/lam.c between version 1.20 and 1.21

version 1.20, 2018/07/11 11:35:06 version 1.21, 2018/07/11 11:42:17
Line 78 
Line 78 
         getargs(argc, argv);          getargs(argc, argv);
         if (numfiles == 0)          if (numfiles == 0)
                 usage();                  usage();
   
           if (pledge("stdio", NULL) == -1)
                   err(1, "pledge");
   
         /* Concatenate lines from each file, then print. */          /* Concatenate lines from each file, then print. */
         for (;;) {          for (;;) {
                 linep = line;                  linep = line;

Legend:
Removed from v.1.20  
changed lines
  Added in v.1.21