diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1996-09-07 03:14:28 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1996-09-07 03:14:28 +0000 |
commit | 52b1b4ee4d0fef47435b4403dae028dd07e67fa9 (patch) | |
tree | 02e0110baf68ad9bfd0470d255559de7ff7f50d1 /usr.bin | |
parent | 415a483131479053b466eb604593e496b997502b (diff) |
remove defs.h hackery now that oldrdist just uses rcmdsh()
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/rdist/Makefile | 4 | ||||
-rw-r--r-- | usr.bin/rdist/rshrcmd.c | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/usr.bin/rdist/Makefile b/usr.bin/rdist/Makefile index 6aa246422c6..bf1c5adaa19 100644 --- a/usr.bin/rdist/Makefile +++ b/usr.bin/rdist/Makefile @@ -1,9 +1,9 @@ -# $OpenBSD: Makefile,v 1.6 1996/07/19 22:03:56 millert Exp $ +# $OpenBSD: Makefile,v 1.7 1996/09/07 03:14:26 millert Exp $ # # from: @(#)Makefile 5.11 (Berkeley) 3/12/91 PROG= rdist -CFLAGS+=-I${.CURDIR} -I. -DOS_H=\"os-openbsd.h\" +CFLAGS+=-I. -DOS_H=\"os-openbsd.h\" SRCS= gram.y child.c client.c common.c distopt.c docmd.c expand.c \ isexec.c lookup.c message.c rdist.c rshrcmd.c setargs.c signal.c CLEANFILES+=gram.c y.tab.h diff --git a/usr.bin/rdist/rshrcmd.c b/usr.bin/rdist/rshrcmd.c index f305bf0d222..7dac1b6a506 100644 --- a/usr.bin/rdist/rshrcmd.c +++ b/usr.bin/rdist/rshrcmd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rshrcmd.c,v 1.4 1996/07/19 21:47:15 millert Exp $ */ +/* $OpenBSD: rshrcmd.c,v 1.5 1996/09/07 03:14:27 millert Exp $ */ /* @@ -8,10 +8,10 @@ #ifndef lint static char RCSid[] = -"$OpenBSD: rshrcmd.c,v 1.4 1996/07/19 21:47:15 millert Exp $"; +"$OpenBSD: rshrcmd.c,v 1.5 1996/09/07 03:14:27 millert Exp $"; #endif -#include <defs.h> +#include "defs.h" #if !defined(DIRECT_RCMD) |