diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1997-08-17 23:05:10 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1997-08-17 23:05:10 +0000 |
commit | da0db51398e785c7b9d06b2c915bfa2d6737abe2 (patch) | |
tree | 4727905dfe0d59ff93a41f008204af46bb1d1055 /bin/pax | |
parent | 60bc132b385fbae6257c2da60bf75f22933de26d (diff) |
Don't include both strings.h and string.h -- just use string.h
Diffstat (limited to 'bin/pax')
-rw-r--r-- | bin/pax/sel_subs.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/bin/pax/sel_subs.c b/bin/pax/sel_subs.c index cc54324459b..c5c2253c82c 100644 --- a/bin/pax/sel_subs.c +++ b/bin/pax/sel_subs.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sel_subs.c,v 1.6 1997/07/25 18:58:36 mickey Exp $ */ +/* $OpenBSD: sel_subs.c,v 1.7 1997/08/17 23:05:09 millert Exp $ */ /* $NetBSD: sel_subs.c,v 1.5 1995/03/21 09:07:42 cgd Exp $ */ /*- @@ -42,7 +42,7 @@ #if 0 static char sccsid[] = "@(#)sel_subs.c 8.1 (Berkeley) 5/31/93"; #else -static char rcsid[] = "$OpenBSD: sel_subs.c,v 1.6 1997/07/25 18:58:36 mickey Exp $"; +static char rcsid[] = "$OpenBSD: sel_subs.c,v 1.7 1997/08/17 23:05:09 millert Exp $"; #endif #endif /* not lint */ @@ -54,7 +54,6 @@ static char rcsid[] = "$OpenBSD: sel_subs.c,v 1.6 1997/07/25 18:58:36 mickey Exp #include <grp.h> #include <stdio.h> #include <string.h> -#include <strings.h> #include <unistd.h> #include <stdlib.h> #include "pax.h" |