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

Diff for /mandoc/man_term.c between version 1.54 and 1.55

version 1.54, 2009/11/12 08:21:05 version 1.55, 2010/01/01 17:14:28
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 62  struct termact {
Line 66  struct termact {
         int             (*pre)(DECL_ARGS);          int             (*pre)(DECL_ARGS);
         void            (*post)(DECL_ARGS);          void            (*post)(DECL_ARGS);
 };  };
   
 #ifdef __linux__  
 extern  size_t            strlcpy(char *, const char *, size_t);  
 extern  size_t            strlcat(char *, const char *, size_t);  
 #endif  
   
 static  int               a2width(const struct man_node *);  static  int               a2width(const struct man_node *);
 static  int               a2height(const struct man_node *);  static  int               a2height(const struct man_node *);

Legend:
Removed from v.1.54  
changed lines
  Added in v.1.55

CVSweb