diff options
author | delphij <delphij@FreeBSD.org> | 2009-12-13 03:34:19 +0000 |
---|---|---|
committer | delphij <delphij@FreeBSD.org> | 2009-12-13 03:34:19 +0000 |
commit | 1fe1a17dd4ae5033351226080a9208ea5adeeae4 (patch) | |
tree | 088112f15e9b0989bc23133c974087b90683c12f | |
parent | 4a7171bdc0150e8f4076d9455ce534338a2d8b07 (diff) | |
download | FreeBSD-src-1fe1a17dd4ae5033351226080a9208ea5adeeae4.zip FreeBSD-src-1fe1a17dd4ae5033351226080a9208ea5adeeae4.tar.gz |
Staticify internal functions and make usage() a prototype.
-rw-r--r-- | usr.bin/xinstall/xinstall.c | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/usr.bin/xinstall/xinstall.c b/usr.bin/xinstall/xinstall.c index 49e47c6..36257f4 100644 --- a/usr.bin/xinstall/xinstall.c +++ b/usr.bin/xinstall/xinstall.c @@ -86,16 +86,16 @@ int dobackup, docompare, dodir, dopreserve, dostrip, nommap, safecopy, verbose; mode_t mode = S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH; const char *suffix = BACKUP_SUFFIX; -void copy(int, const char *, int, const char *, off_t); -int compare(int, const char *, size_t, int, const char *, size_t); -int create_newfile(const char *, int, struct stat *); -int create_tempfile(const char *, char *, size_t); -void install(const char *, const char *, u_long, u_int); -void install_dir(char *); -u_long numeric_id(const char *, const char *); -void strip(const char *); -int trymmap(int); -void usage(void); +static void copy(int, const char *, int, const char *, off_t); +static int compare(int, const char *, size_t, int, const char *, size_t); +static int create_newfile(const char *, int, struct stat *); +static int create_tempfile(const char *, char *, size_t); +static void install(const char *, const char *, u_long, u_int); +static void install_dir(char *); +static u_long numeric_id(const char *, const char *); +static void strip(const char *); +static int trymmap(int); +static void usage(void); int main(int argc, char *argv[]) @@ -771,7 +771,7 @@ install_dir(char *path) * print a usage message and die */ void -usage() +usage(void) { (void)fprintf(stderr, "usage: install [-bCcpSsv] [-B suffix] [-f flags] [-g group] [-m mode]\n" |