diff options
Diffstat (limited to 'sbin/mount_udf/mount_udf.c')
-rw-r--r-- | sbin/mount_udf/mount_udf.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sbin/mount_udf/mount_udf.c b/sbin/mount_udf/mount_udf.c index 1cf6e8722f6..64c44d4e677 100644 --- a/sbin/mount_udf/mount_udf.c +++ b/sbin/mount_udf/mount_udf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mount_udf.c,v 1.5 2007/12/09 20:54:01 jmc Exp $ */ +/* $OpenBSD: mount_udf.c,v 1.6 2013/11/12 04:59:02 deraadt Exp $ */ /* * Copyright (c) 2005 Pedro Martelletto <pedro@ambientworks.net> @@ -32,6 +32,10 @@ const struct mntopt opts[] = { MOPT_STDOPTS, { NULL } }; +u_int32_t lastblock(char *dev); +__dead void usage(void); + + __dead void usage(void) { |