c99 initializer

This commit is contained in:
christos 2006-10-16 03:26:49 +00:00
parent 851ac27d44
commit cf91149591
4 changed files with 12 additions and 12 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: mount_ados.c,v 1.21 2006/03/21 21:11:41 christos Exp $ */
/* $NetBSD: mount_ados.c,v 1.22 2006/10/16 03:26:49 christos Exp $ */
/*
* Copyright (c) 1994 Christopher G. Demetriou
@ -36,7 +36,7 @@
#include <sys/cdefs.h>
#ifndef lint
__RCSID("$NetBSD: mount_ados.c,v 1.21 2006/03/21 21:11:41 christos Exp $");
__RCSID("$NetBSD: mount_ados.c,v 1.22 2006/10/16 03:26:49 christos Exp $");
#endif /* not lint */
#include <sys/cdefs.h>
@ -61,7 +61,7 @@ __RCSID("$NetBSD: mount_ados.c,v 1.21 2006/03/21 21:11:41 christos Exp $");
static const struct mntopt mopts[] = {
MOPT_STDOPTS,
MOPT_GETARGS,
{ NULL }
{ .m_option = NULL }
};
int mount_ados(int argc, char **argv);

View File

@ -1,4 +1,4 @@
/* $NetBSD: mount_cd9660.c,v 1.22 2006/03/21 21:11:41 christos Exp $ */
/* $NetBSD: mount_cd9660.c,v 1.23 2006/10/16 03:27:41 christos Exp $ */
/*
* Copyright (c) 1992, 1993, 1994
@ -46,7 +46,7 @@ __COPYRIGHT("@(#) Copyright (c) 1992, 1993, 1994\n\
#if 0
static char sccsid[] = "@(#)mount_cd9660.c 8.7 (Berkeley) 5/1/95";
#else
__RCSID("$NetBSD: mount_cd9660.c,v 1.22 2006/03/21 21:11:41 christos Exp $");
__RCSID("$NetBSD: mount_cd9660.c,v 1.23 2006/10/16 03:27:41 christos Exp $");
#endif
#endif /* not lint */
@ -75,7 +75,7 @@ static const struct mntopt mopts[] = {
{ "rrip", 1, ISOFSMNT_NORRIP, 1 },
{ "joliet", 1, ISOFSMNT_NOJOLIET, 1 },
{ "rrcaseins", 0, ISOFSMNT_RRCASEINS, 1 },
{ NULL }
{ .m_option = NULL }
};
int mount_cd9660(int argc, char **argv);

View File

@ -1,4 +1,4 @@
/* $NetBSD: mount_ext2fs.c,v 1.15 2006/03/21 21:11:41 christos Exp $ */
/* $NetBSD: mount_ext2fs.c,v 1.16 2006/10/16 03:29:06 christos Exp $ */
/*-
* Copyright (c) 1993, 1994
@ -39,7 +39,7 @@ __COPYRIGHT("@(#) Copyright (c) 1993, 1994\n\
#if 0
static char sccsid[] = "@(#)mount_ufs.c 8.4 (Berkeley) 4/26/95";
#else
__RCSID("$NetBSD: mount_ext2fs.c,v 1.15 2006/03/21 21:11:41 christos Exp $");
__RCSID("$NetBSD: mount_ext2fs.c,v 1.16 2006/10/16 03:29:06 christos Exp $");
#endif
#endif /* not lint */
@ -69,7 +69,7 @@ static const struct mntopt mopts[] = {
MOPT_FORCE,
MOPT_GETARGS,
MOPT_NODEVMTIME,
{ NULL }
{ .m_option = NULL }
};
#ifndef MOUNT_NOMAIN

View File

@ -1,4 +1,4 @@
/* $NetBSD: mount_fdesc.c,v 1.17 2006/03/21 21:11:41 christos Exp $ */
/* $NetBSD: mount_fdesc.c,v 1.18 2006/10/16 03:29:46 christos Exp $ */
/*
* Copyright (c) 1992, 1993, 1994
@ -77,7 +77,7 @@ __COPYRIGHT("@(#) Copyright (c) 1992, 1993, 1994\n\
#if 0
static char sccsid[] = "@(#)mount_fdesc.c 8.3 (Berkeley) 4/26/95";
#else
__RCSID("$NetBSD: mount_fdesc.c,v 1.17 2006/03/21 21:11:41 christos Exp $");
__RCSID("$NetBSD: mount_fdesc.c,v 1.18 2006/10/16 03:29:46 christos Exp $");
#endif
#endif /* not lint */
@ -95,7 +95,7 @@ __RCSID("$NetBSD: mount_fdesc.c,v 1.17 2006/03/21 21:11:41 christos Exp $");
static const struct mntopt mopts[] = {
MOPT_STDOPTS,
MOPT_GETARGS,
{ NULL }
{ .m_option = NULL }
};
static void usage(void);