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

Diff for /src/usr.bin/mandoc/main.c between version 1.121 and 1.122

version 1.121, 2015/01/15 04:26:06 version 1.122, 2015/01/16 21:12:01
Line 18 
Line 18 
  */   */
   
 #include <sys/types.h>  #include <sys/types.h>
   #include <sys/param.h>  /* MACHINE */
   
 #include <assert.h>  #include <assert.h>
 #include <ctype.h>  #include <ctype.h>
Line 300 
Line 301 
                         argv++;                          argv++;
                         argc--;                          argc--;
                 }                  }
                   if (search.arch == NULL)
                           search.arch = getenv("MACHINE");
                   if (search.arch == NULL)
                           search.arch = MACHINE;
         }          }
   
         rc = MANDOCLEVEL_OK;          rc = MANDOCLEVEL_OK;

Legend:
Removed from v.1.121  
changed lines
  Added in v.1.122