diff options
Diffstat (limited to 'lib/libc/string/strncat.c')
-rw-r--r-- | lib/libc/string/strncat.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/lib/libc/string/strncat.c b/lib/libc/string/strncat.c index 116fc53f92f4..086bdef32b68 100644 --- a/lib/libc/string/strncat.c +++ b/lib/libc/string/strncat.c @@ -32,14 +32,10 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char sccsid[] = "@(#)strncat.c 8.1 (Berkeley) 6/4/93"; -#endif /* LIBC_SCCS and not lint */ -#include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); - #include <string.h> +#undef strncat /* _FORTIFY_SOURCE */ + /* * Concatenate src on the end of dst. At most strlen(dst)+n+1 bytes * are written at dst (at most n+1 bytes being appended). Return dst. |