constify first arg to parseopts()

This commit is contained in:
jdolecek 2000-08-31 07:21:46 +00:00
parent 8b93101dc8
commit 3fd457414e
2 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: libi386.h,v 1.11 2000/04/23 19:57:14 tsarna Exp $ */
/* $NetBSD: libi386.h,v 1.12 2000/08/31 07:21:46 jdolecek Exp $ */
/*
* Copyright (c) 1996
@ -89,7 +89,7 @@ physaddr_t xmsalloc __P((int));
/* parseutils.c */
char *gettrailer __P((char*));
int parseopts __P((char*, int*));
int parseopts __P((const char*, int*));
int parseboot __P((char*, char**, int*));
/* menuutils.c */

View File

@ -1,4 +1,4 @@
/* $NetBSD: parseutils.c,v 1.1 1997/09/17 17:13:03 drochner Exp $ */
/* $NetBSD: parseutils.c,v 1.2 2000/08/31 07:21:46 jdolecek Exp $ */
/*
* Copyright (c) 1996, 1997
@ -66,7 +66,7 @@ gettrailer(arg)
int
parseopts(opts, howto)
char *opts;
const char *opts;
int *howto;
{
int r, tmpopt = 0;