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

Diff for /mandoc/html.c between version 1.91 and 1.92

version 1.91, 2009/11/16 08:46:58 version 1.92, 2010/01/01 17:14:27
Line 14 
Line 14 
  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF   * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.   * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */   */
   #ifdef HAVE_CONFIG_H
   #include "config.h"
   #endif
   
 #include <sys/types.h>  #include <sys/types.h>
   
 #include <assert.h>  #include <assert.h>
Line 88  static const char *const htmlattrs[ATTR_MAX] = {
Line 92  static const char *const htmlattrs[ATTR_MAX] = {
         "id",          "id",
         "summary",          "summary",
 };  };
   
 #ifdef __linux__  
 extern  int               getsubopt(char **, char * const *, char **);  
 #endif  
   
   
 static  void              print_spec(struct html *, const char *, size_t);  static  void              print_spec(struct html *, const char *, size_t);
 static  void              print_res(struct html *, const char *, size_t);  static  void              print_res(struct html *, const char *, size_t);

Legend:
Removed from v.1.91  
changed lines
  Added in v.1.92

CVSweb