]> git.cameronkatri.com Git - mandoc.git/blobdiff - compat.c
Moved output definitions into main.h.
[mandoc.git] / compat.c
index cec52d7b8fe09ce5725e2befffb087b4998a10f2..8665ffa8c858df4f80c52d3126ef272861d81500 100644 (file)
--- a/compat.c
+++ b/compat.c
@@ -19,7 +19,7 @@
 #include <sys/types.h>
 #include <string.h>
 
 #include <sys/types.h>
 #include <string.h>
 
-#ifdef __linux__
+#ifdef __linux__
 
 /*
  * Appends src to string dst of size siz (unlike strncat, siz is the
 
 /*
  * Appends src to string dst of size siz (unlike strncat, siz is the
@@ -56,7 +56,6 @@ strlcat(char *dst, const char *src, size_t siz)
        return(dlen + (s - src));       /* count does not include NUL */
 }
 
        return(dlen + (s - src));       /* count does not include NUL */
 }
 
-
 /*
  * Copy src to string dst of size siz.  At most siz-1 characters
  * will be copied.  Always NUL terminates (unless siz == 0).
 /*
  * Copy src to string dst of size siz.  At most siz-1 characters
  * will be copied.  Always NUL terminates (unless siz == 0).
@@ -88,4 +87,4 @@ strlcpy(char *dst, const char *src, size_t siz)
        return(s - src - 1);    /* count does not include NUL */
 }
 
        return(s - src - 1);    /* count does not include NUL */
 }
 
-#endif /*__linux__*/
+#endif