diff options
author | Jim Meyering <jim@meyering.net> | 2003-02-21 10:41:27 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2003-02-21 10:41:27 +0000 |
commit | 4d34fabc8dbf9ec41b869ab11c0db0cf326db400 (patch) | |
tree | 19b26046772582262f56dfe70c48ab33831c5e92 /src | |
parent | 1771d1a11dc6b2ada3562bffad8fe9f514b44a3d (diff) | |
download | coreutils-4d34fabc8dbf9ec41b869ab11c0db0cf326db400.tar.xz |
Include "mmap-stack.h".
(main): Invoke `run' through a macro that (when possible) runs it
with a large, mmap'd stack.
Diffstat (limited to 'src')
-rw-r--r-- | src/cp.c | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -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); } |