=================================================================== RCS file: /cvs/mandoc/Attic/compat.c,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- mandoc/Attic/compat.c 2008/12/15 02:29:44 1.3 +++ mandoc/Attic/compat.c 2009/03/19 16:40:49 1.4 @@ -1,4 +1,4 @@ -/* $OpenBSD: compat.c,v 1.3 2008/12/15 02:29:44 kristaps dead $ */ +/* $OpenBSD: compat.c,v 1.4 2009/03/19 16:40:49 kristaps Exp $ */ /* * Copyright (c) 1998 Todd C. Miller @@ -19,7 +19,7 @@ #include #include -#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