include <string.h> for mem* and str*

This commit is contained in:
mrg 2002-10-13 00:31:28 +00:00
parent 5d8df6cb04
commit 9b3e4b9e61

View File

@ -1,4 +1,4 @@
/* $NetBSD: pax.c,v 1.18 2002/10/12 15:39:30 christos Exp $ */ /* $NetBSD: pax.c,v 1.19 2002/10/13 00:31:28 mrg Exp $ */
/*- /*-
* Copyright (c) 1992 Keith Muller. * Copyright (c) 1992 Keith Muller.
@ -47,7 +47,7 @@ __COPYRIGHT("@(#) Copyright (c) 1992, 1993\n\
#if 0 #if 0
static char sccsid[] = "@(#)pax.c 8.2 (Berkeley) 4/18/94"; static char sccsid[] = "@(#)pax.c 8.2 (Berkeley) 4/18/94";
#else #else
__RCSID("$NetBSD: pax.c,v 1.18 2002/10/12 15:39:30 christos Exp $"); __RCSID("$NetBSD: pax.c,v 1.19 2002/10/13 00:31:28 mrg Exp $");
#endif #endif
#endif /* not lint */ #endif /* not lint */
@ -61,6 +61,7 @@ __RCSID("$NetBSD: pax.c,v 1.18 2002/10/12 15:39:30 christos Exp $");
#include <signal.h> #include <signal.h>
#include <unistd.h> #include <unistd.h>
#include <stdlib.h> #include <stdlib.h>
#include <string.h>
#include <errno.h> #include <errno.h>
#include <paths.h> #include <paths.h>
#include "pax.h" #include "pax.h"