From 4d34fabc8dbf9ec41b869ab11c0db0cf326db400 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Fri, 21 Feb 2003 10:41:27 +0000 Subject: [PATCH] Include "mmap-stack.h". (main): Invoke `run' through a macro that (when possible) runs it with a large, mmap'd stack. --- src/cp.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/cp.c b/src/cp.c index 9ae9f2a..3079cb4 100644 --- a/src/cp.c +++ b/src/cp.c @@ -32,8 +32,9 @@ #include "backupfile.h" #include "copy.h" #include "cp-hash.h" -#include "error.h" #include "dirname.h" +#include "error.h" +#include "mmap-stack.h" #include "path-concat.h" #include "quote.h" @@ -1066,5 +1067,6 @@ main (int argc, char **argv) if (x.unlink_dest_after_failed_open && (x.hard_link || x.symbolic_link)) x.unlink_dest_before_opening = 1; - run (argc - optind, argv + optind, target_directory, &x); + RUN_WITH_BIG_STACK_4 (run, argc - optind, argv + optind, + target_directory, &x); } -- 2.7.4