]> git.cameronkatri.com Git - mandoc.git/blobdiff - xstd.c
Added man validator, renamed mdoc validator.
[mandoc.git] / xstd.c
diff --git a/xstd.c b/xstd.c
index e1e5262d0284daa42ef8dcf58d3ab484a20ab7d2..c22a0ff2ecd9a2c4e14aa237b54c50e75fd5f799 100644 (file)
--- a/xstd.c
+++ b/xstd.c
@@ -1,4 +1,4 @@
-/* $Id: xstd.c,v 1.11 2009/03/16 23:37:28 kristaps Exp $ */
+/* $Id: xstd.c,v 1.13 2009/03/23 14:22:11 kristaps Exp $ */
 /*
  * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@openbsd.org>
  *
 #include <stdlib.h>
 #include <string.h>
 
-#include "private.h"
+#include "libmdoc.h"
+
+#ifdef __linux__
+extern size_t                  strlcpy(char *, const char *, size_t);
+extern size_t                  strlcat(char *, const char *, size_t);
+#endif
 
 /*
  * Contains wrappers for common functions to simplify their general
@@ -59,15 +64,6 @@ xrealloc(void *ptr, size_t sz)
        return(p);
 }
 
-void *
-xcalloc(size_t num, size_t sz)
-{
-       void            *p;
-
-       if (NULL == (p = calloc(num, sz)))
-               err(EXIT_FAILURE, "calloc");
-       return(p);
-}
 
 char *
 xstrdup(const char *p)