X-Git-Url: https://git.cameronkatri.com/mandoc.git/blobdiff_plain/d3f19a8807625c3ef9817089048a7c32d50775c0..e012cb8b2706ff0d54c6b3b68fa79354484752dc:/compat.c?ds=inline

diff --git a/compat.c b/compat.c
index cec52d7b..8665ffa8 100644
--- a/compat.c
+++ b/compat.c
@@ -19,7 +19,7 @@
 #include <sys/types.h>
 #include <string.h>
 
-#ifdef	__linux__
+#ifdef __linux__
 
 /*
  * 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 */
 }
 
-
 /*
  * 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 */
 }
 
-#endif	/*__linux__*/
+#endif