'const struct' not 'struct const'

This commit is contained in:
cgd 1996-04-13 05:35:39 +00:00
parent c238d2b94e
commit c3877d120c
3 changed files with 9 additions and 9 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: mount_kernfs.c,v 1.7 1996/04/13 01:31:24 jtc Exp $ */
/* $NetBSD: mount_kernfs.c,v 1.8 1996/04/13 05:35:39 cgd Exp $ */
/*
* Copyright (c) 1990, 1992 Jan-Simon Pendry
@ -47,7 +47,7 @@ char copyright[] =
#if 0
static char sccsid[] = "@(#)mount_kernfs.c 8.2 (Berkeley) 3/27/94";
#else
static char rcsid[] = "$NetBSD: mount_kernfs.c,v 1.7 1996/04/13 01:31:24 jtc Exp $";
static char rcsid[] = "$NetBSD: mount_kernfs.c,v 1.8 1996/04/13 05:35:39 cgd Exp $";
#endif
#endif /* not lint */
@ -62,7 +62,7 @@ static char rcsid[] = "$NetBSD: mount_kernfs.c,v 1.7 1996/04/13 01:31:24 jtc Exp
#include "mntopts.h"
struct const mntopt mopts[] = {
const struct mntopt mopts[] = {
MOPT_STDOPTS,
{ NULL }
};

View File

@ -1,4 +1,4 @@
/* $NetBSD: mount_lfs.c,v 1.3 1996/04/13 01:31:30 jtc Exp $ */
/* $NetBSD: mount_lfs.c,v 1.4 1996/04/13 05:35:44 cgd Exp $ */
/*-
* Copyright (c) 1993, 1994
@ -43,7 +43,7 @@ static char copyright[] =
#if 0
static char sccsid[] = "@(#)mount_lfs.c 8.3 (Berkeley) 3/27/94";
#else
static char rcsid[] = "$NetBSD: mount_lfs.c,v 1.3 1996/04/13 01:31:30 jtc Exp $";
static char rcsid[] = "$NetBSD: mount_lfs.c,v 1.4 1996/04/13 05:35:44 cgd Exp $";
#endif
#endif /* not lint */
@ -59,7 +59,7 @@ static char rcsid[] = "$NetBSD: mount_lfs.c,v 1.3 1996/04/13 01:31:30 jtc Exp $"
#include "mntopts.h"
#include "pathnames.h"
struct const mntopt mopts[] = {
const struct mntopt mopts[] = {
MOPT_STDOPTS,
MOPT_UPDATE,
{ NULL }

View File

@ -1,4 +1,4 @@
/* $NetBSD: mount_msdos.c,v 1.13 1996/04/13 01:31:35 jtc Exp $ */
/* $NetBSD: mount_msdos.c,v 1.14 1996/04/13 05:35:47 cgd Exp $ */
/*
* Copyright (c) 1994 Christopher G. Demetriou
@ -31,7 +31,7 @@
*/
#ifndef lint
static char rcsid[] = "$NetBSD: mount_msdos.c,v 1.13 1996/04/13 01:31:35 jtc Exp $";
static char rcsid[] = "$NetBSD: mount_msdos.c,v 1.14 1996/04/13 05:35:47 cgd Exp $";
#endif /* not lint */
#include <sys/cdefs.h>
@ -49,7 +49,7 @@ static char rcsid[] = "$NetBSD: mount_msdos.c,v 1.13 1996/04/13 01:31:35 jtc Exp
#include "mntopts.h"
struct const mntopt mopts[] = {
const struct mntopt mopts[] = {
MOPT_STDOPTS,
{ NULL }
};