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/strlcpy.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/strlcpy.c')
-rw-r--r-- | missing/strlcpy.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/missing/strlcpy.c b/missing/strlcpy.c index a92e4d1..b0671eb 100644 --- a/missing/strlcpy.c +++ b/missing/strlcpy.c @@ -28,11 +28,6 @@ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -#ifndef lint -static const char rcsid[] _U_ = - "@(#) $Header: /tcpdump/master/tcpdump/missing/strlcpy.c,v 1.5 2003-11-16 09:36:52 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" + /* * Copy src to string dst of size siz. At most siz-1 characters * will be copied. Always NUL terminates (unless siz == 0). |