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

Diff for /mandoc/soelim.c between version 1.1 and 1.2

version 1.1, 2015/05/20 20:55:04 version 1.2, 2015/05/20 22:22:59
Line 1 
Line 1 
 /*-  /*      $Id$    */
   /*
  * Copyright (c) 2014 Baptiste Daroussin <bapt@FreeBSD.org>   * Copyright (c) 2014 Baptiste Daroussin <bapt@FreeBSD.org>
  * All rights reserved.   * All rights reserved.
  *   *
Line 24 
Line 25 
  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.   * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */   */
   
 #include <sys/cdefs.h>  
 __FBSDID("$FreeBSD$");  
   
 #include <sys/param.h>  #include <sys/param.h>
   #include <sys/types.h>
   
 #define _WITH_GETLINE  #include <ctype.h>
   #include <err.h>
 #include <stdio.h>  #include <stdio.h>
 #include <unistd.h>  
 #include <stdlib.h>  #include <stdlib.h>
 #include <stdbool.h>  
 #include <string.h>  #include <string.h>
   #if HAVE_STRINGLIST
 #include <stringlist.h>  #include <stringlist.h>
 #include <err.h>  #else
 #include <ctype.h>  #include "compat_stringlist.h"
   #endif
   #include <unistd.h>
   
 #define C_OPTION 0x1  #define C_OPTION 0x1
   

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.2

CVSweb