[BACK]Return to main.c CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / mandoc

Diff for /mandoc/main.c between version 1.215 and 1.216

version 1.215, 2015/01/15 04:26:39 version 1.216, 2015/01/16 21:15:05
Line 19 
Line 19 
 #include "config.h"  #include "config.h"
   
 #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 328  main(int argc, char *argv[])
Line 329  main(int argc, char *argv[])
                         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.215  
changed lines
  Added in v.1.216

CVSweb