diff options
author | Ted Unangst <tedu@cvs.openbsd.org> | 2003-05-20 03:38:05 +0000 |
---|---|---|
committer | Ted Unangst <tedu@cvs.openbsd.org> | 2003-05-20 03:38:05 +0000 |
commit | 3395fe79f40ad2d0a72e6f307dee3361c1a2db8f (patch) | |
tree | ed5741a04034db80fb646a1fcffb1992b2dabff1 /sbin/mount_ntfs/mount_ntfs.c | |
parent | 81020f5a7f03d4c5027a93d1c1cda72b2b46d8bb (diff) |
un __P
Diffstat (limited to 'sbin/mount_ntfs/mount_ntfs.c')
-rw-r--r-- | sbin/mount_ntfs/mount_ntfs.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sbin/mount_ntfs/mount_ntfs.c b/sbin/mount_ntfs/mount_ntfs.c index 857021ad2a8..c99aad5676a 100644 --- a/sbin/mount_ntfs/mount_ntfs.c +++ b/sbin/mount_ntfs/mount_ntfs.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mount_ntfs.c,v 1.2 2003/05/20 03:19:57 tedu Exp $ */ +/* $OpenBSD: mount_ntfs.c,v 1.3 2003/05/20 03:38:04 tedu Exp $ */ /* $NetBSD: mount_ntfs.c,v 1.9 2003/05/03 15:37:08 christos Exp $ */ /* @@ -64,9 +64,9 @@ static const struct mntopt mopts[] = { #define __dead2 __attribute__((__noreturn__)) #endif -static void usage __P((void)) __dead2; -int main __P((int, char **)); -int mount_ntfs __P((int argc, char **argv)); +static void usage(void) __dead2; +int main(int, char **); +int mount_ntfs(int argc, char **argv); #ifndef MOUNT_NOMAIN int |