diff options
author | delphij <delphij@FreeBSD.org> | 2015-01-06 19:03:11 +0000 |
---|---|---|
committer | delphij <delphij@FreeBSD.org> | 2015-01-06 19:03:11 +0000 |
commit | 08263d19579d35a7a65e0c8bcb768504ce76d04e (patch) | |
tree | b0af675e15d65cc0adac2367c37233a794389c9a /missing/strlcat.c | |
parent | 89918529102669b0d24d8aac9e5516b010b1c81c (diff) | |
download | FreeBSD-src-08263d19579d35a7a65e0c8bcb768504ce76d04e.zip FreeBSD-src-08263d19579d35a7a65e0c8bcb768504ce76d04e.tar.gz |
Vendor import of tcpdump 4.6.2.
Diffstat (limited to 'missing/strlcat.c')
-rw-r--r-- | missing/strlcat.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/missing/strlcat.c b/missing/strlcat.c index a3d3fac..34f1af2 100644 --- a/missing/strlcat.c +++ b/missing/strlcat.c @@ -28,11 +28,6 @@ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -#ifndef lint -static const char rcsid[] _U_ = - "@(#) $Header: /tcpdump/master/tcpdump/missing/strlcat.c,v 1.5 2003-11-16 09:36:51 guy Exp $ (LBL)"; -#endif - #ifdef HAVE_CONFIG_H #include <config.h> #endif @@ -41,6 +36,8 @@ static const char rcsid[] _U_ = #include <string.h> +#include "interface.h" + /* * Appends src to string dst of size siz (unlike strncat, siz is the * full size of dst, not space left). At most siz-1 characters |