From 8cd3bc997ab2e9819811902bb8ceb2945b12028d Mon Sep 17 00:00:00 2001 From: wosch Date: Sat, 14 Nov 1998 23:43:11 +0000 Subject: [PATCH] Use mmap for file coping. 5-10% faster than the read system call. --- bin/cp/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bin/cp/Makefile b/bin/cp/Makefile index 57883daad0d1..f4ca4d25c87f 100644 --- a/bin/cp/Makefile +++ b/bin/cp/Makefile @@ -1,7 +1,8 @@ # @(#)Makefile 8.1 (Berkeley) 5/31/93 -# $Id$ +# $Id: Makefile,v 1.4 1997/02/22 14:01:32 peter Exp $ PROG= cp SRCS= cp.c utils.c +CFLAGS+= -DVM_AND_BUFFER_CACHE_SYNCHRONIZED .include