diff options
author | Craig Rodrigues <rodrigc@FreeBSD.org> | 2005-10-07 02:18:20 +0000 |
---|---|---|
committer | Craig Rodrigues <rodrigc@FreeBSD.org> | 2005-10-07 02:18:20 +0000 |
commit | e24dc56a221a481029e370679686566f0f1cbf7b (patch) | |
tree | 67005176bc32a3f93ac5be4246047cc956f2e7a6 /sbin/mount/mount_ufs.c | |
parent | a33a86ea1fe77c131c825f5cabbf55b52d8880fe (diff) | |
download | src-e24dc56a221a481029e370679686566f0f1cbf7b.tar.gz src-e24dc56a221a481029e370679686566f0f1cbf7b.zip |
Switch from K&R-style C prototypes to ISO/ANSI-style C prototypes.
Make prototype in extern.h match prototype in mount_ufs.c
Notes
Notes:
svn path=/head/; revision=151042
Diffstat (limited to 'sbin/mount/mount_ufs.c')
-rw-r--r-- | sbin/mount/mount_ufs.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sbin/mount/mount_ufs.c b/sbin/mount/mount_ufs.c index 178dd48ff822..3c99576de2e7 100644 --- a/sbin/mount/mount_ufs.c +++ b/sbin/mount/mount_ufs.c @@ -68,9 +68,7 @@ static struct mntopt mopts[] = { }; int -mount_ufs(argc, argv) - int argc; - char * const argv[]; +mount_ufs(int argc, char * const argv[]) { struct ufs_args args; int ch, mntflags; |