sprinkle const.

This commit is contained in:
christos 2007-01-25 23:47:13 +00:00
parent 61ffb7330d
commit b772b1e89b
2 changed files with 7 additions and 6 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: timedc.c,v 1.16 2007/01/25 23:25:20 cbiere Exp $ */
/* $NetBSD: timedc.c,v 1.17 2007/01/25 23:47:13 christos Exp $ */
/*-
* Copyright (c) 1985, 1993 The Regents of the University of California.
@ -40,7 +40,7 @@ __COPYRIGHT(
#if 0
static char sccsid[] = "@(#)timedc.c 8.1 (Berkeley) 6/6/93";
#else
__RCSID("$NetBSD: timedc.c,v 1.16 2007/01/25 23:25:20 cbiere Exp $");
__RCSID("$NetBSD: timedc.c,v 1.17 2007/01/25 23:47:13 christos Exp $");
#endif
#endif /* not lint */
@ -146,7 +146,8 @@ intr(int signo)
static struct cmd *
getcmd(char *name)
{
char *p, *q;
const char *p;
char *q;
struct cmd *c, *found;
int nmatches, longest;
extern struct cmd cmdtab[];

View File

@ -1,4 +1,4 @@
/* $NetBSD: timedc.h,v 1.10 2003/08/07 11:25:48 agc Exp $ */
/* $NetBSD: timedc.h,v 1.11 2007/01/25 23:47:13 christos Exp $ */
/*-
* Copyright (c) 1985, 1993 The Regents of the University of California.
@ -52,8 +52,8 @@
#define HOSTDOWN 0x7fffffff
struct cmd {
char *c_name; /* command name */
char *c_help; /* help message */
const char *c_name; /* command name */
const char *c_help; /* help message */
void (*c_handler)(int, char **); /* routine to do the work */
int c_priv; /* privileged command */
};