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

Diff for /mandoc/tag.c between version 1.17 and 1.19

version 1.17, 2017/01/09 17:49:58 version 1.19, 2018/02/23 16:47:10
Line 38  struct tag_entry {
Line 38  struct tag_entry {
         char     s[];          char     s[];
 };  };
   
 static  void     tag_signal(int) __attribute__((noreturn));  static  void     tag_signal(int) __attribute__((__noreturn__));
   
 static struct ohash      tag_data;  static struct ohash      tag_data;
 static struct tag_files  tag_files;  static struct tag_files  tag_files;
Line 213  tag_write(void)
Line 213  tag_write(void)
         ohash_delete(&tag_data);          ohash_delete(&tag_data);
         if (stream != NULL)          if (stream != NULL)
                 fclose(stream);                  fclose(stream);
           else
                   close(tag_files.tfd);
           tag_files.tfd = -1;
 }  }
   
 void  void

Legend:
Removed from v.1.17  
changed lines
  Added in v.1.19

CVSweb