diff options
author | markm <markm@FreeBSD.org> | 2002-10-18 14:45:00 +0000 |
---|---|---|
committer | markm <markm@FreeBSD.org> | 2002-10-18 14:45:00 +0000 |
commit | bde9100ebef64e6a6d3f1efe2a2f4a1a2b6cd123 (patch) | |
tree | 49e04b9932fa5fb719528d91af8916cbf2b39472 /bin/cp | |
parent | 9247d17937c51b3defb71859942e0f0ba2311f47 (diff) | |
download | FreeBSD-src-bde9100ebef64e6a6d3f1efe2a2f4a1a2b6cd123.zip FreeBSD-src-bde9100ebef64e6a6d3f1efe2a2f4a1a2b6cd123.tar.gz |
Constify and staticify for lint.
Diffstat (limited to 'bin/cp')
-rw-r--r-- | bin/cp/cp.c | 4 | ||||
-rw-r--r-- | bin/cp/extern.h | 4 | ||||
-rw-r--r-- | bin/cp/utils.c | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/bin/cp/cp.c b/bin/cp/cp.c index 57c3e4d..bcba8d9 100644 --- a/bin/cp/cp.c +++ b/bin/cp/cp.c @@ -252,7 +252,7 @@ main(int argc, char *argv[]) exit (copy(argv, type, fts_options)); } -int +static int copy(char *argv[], enum op type, int fts_options) { struct stat to_stat; @@ -484,7 +484,7 @@ copy(char *argv[], enum op type, int fts_options) * parent directory, whereas directories tend not to be. Copying the * files first reduces seeking. */ -int +static int mastercmp(const FTSENT * const *a, const FTSENT * const *b) { int a_info, b_info; diff --git a/bin/cp/extern.h b/bin/cp/extern.h index 72484f2..dfb737d 100644 --- a/bin/cp/extern.h +++ b/bin/cp/extern.h @@ -45,8 +45,8 @@ extern int fflag, iflag, nflag, pflag, vflag; __BEGIN_DECLS int copy_fifo(struct stat *, int); -int copy_file(FTSENT *, int); -int copy_link(FTSENT *, int); +int copy_file(const FTSENT *, int); +int copy_link(const FTSENT *, int); int copy_special(struct stat *, int); int setfile(struct stat *, int); void usage(void); diff --git a/bin/cp/utils.c b/bin/cp/utils.c index ab92dfc..7930195 100644 --- a/bin/cp/utils.c +++ b/bin/cp/utils.c @@ -58,7 +58,7 @@ __FBSDID("$FreeBSD$"); #include "extern.h" int -copy_file(FTSENT *entp, int dne) +copy_file(const FTSENT *entp, int dne) { static char buf[MAXBSIZE]; struct stat *fs; @@ -193,7 +193,7 @@ copy_file(FTSENT *entp, int dne) } int -copy_link(FTSENT *p, int exists) +copy_link(const FTSENT *p, int exists) { int len; char llink[PATH_MAX]; |