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/extern.h | |
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/extern.h')
-rw-r--r-- | sbin/mount/extern.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sbin/mount/extern.h b/sbin/mount/extern.h index 638f8a4a1eb2..2271da5c699c 100644 --- a/sbin/mount/extern.h +++ b/sbin/mount/extern.h @@ -31,4 +31,4 @@ int checkvfsname(const char *, const char **); const char **makevfslist(char *); /* mount_ufs.c */ -int mount_ufs(int, char *const *); +int mount_ufs(int, char * const []); |