]> git.cameronkatri.com Git - mandoc.git/commitdiff
Added Linux compat (strlcpy).
authorKristaps Dzonsons <kristaps@bsd.lv>
Thu, 16 Jul 2009 13:42:12 +0000 (13:42 +0000)
committerKristaps Dzonsons <kristaps@bsd.lv>
Thu, 16 Jul 2009 13:42:12 +0000 (13:42 +0000)
mdoc.c

diff --git a/mdoc.c b/mdoc.c
index 44c21846025b92a5100dd8386181f3725d3540f1..f156db9e11242be6504670aa6595a6f01d1c4c50 100644 (file)
--- a/mdoc.c
+++ b/mdoc.c
@@ -1,4 +1,4 @@
-/*     $Id: mdoc.c,v 1.91 2009/07/15 15:36:38 kristaps Exp $ */
+/*     $Id: mdoc.c,v 1.92 2009/07/16 13:42:12 kristaps Exp $ */
 /*
  * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>
  *
@@ -147,6 +147,10 @@ static     int               macrowarn(struct mdoc *, int, const char *);
 static int               pstring(struct mdoc *, int, int, 
                                const char *, size_t);
 
+#ifdef __linux__
+extern size_t            strlcpy(char *, const char *, size_t);
+#endif
+
 
 const struct mdoc_node *
 mdoc_node(const struct mdoc *m)