Deleted Added
full compact
45c45
< __FBSDID("$FreeBSD: head/bin/mv/mv.c 174935 2007-12-27 11:33:42Z dds $");
---
> __FBSDID("$FreeBSD: head/bin/mv/mv.c 180604 2008-07-19 00:13:26Z delphij $");
73,76c73,76
< int copy(char *, char *);
< int do_move(char *, char *);
< int fastcopy(char *, char *, struct stat *);
< void usage(void);
---
> static int copy(const char *, const char *);
> static int do_move(const char *, const char *);
> static int fastcopy(const char *, const char *, struct stat *);
> static void usage(void);
157,158c157,158
< int
< do_move(char *from, char *to)
---
> static int
> do_move(const char *from, const char *to)
257,258c257,258
< int
< fastcopy(char *from, char *to, struct stat *sbp)
---
> static int
> fastcopy(const char *from, const char *to, struct stat *sbp)
363,364c363,364
< int
< copy(char *from, char *to)
---
> static int
> copy(const char *from, const char *to)
441c441
< void
---
> static void