diff options
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). |