summaryrefslogtreecommitdiffstats
path: root/rogue/machdep.c
diff options
context:
space:
mode:
authorhubertf <hubertf@NetBSD.org>1998-11-10 13:01:31 +0000
committerhubertf <hubertf@NetBSD.org>1998-11-10 13:01:31 +0000
commit7d7fd1d69fceb79900e4d597c5e2bdbad06d6cc0 (patch)
tree08c3c9c428446f82830e48fe1f270f237f757c65 /rogue/machdep.c
parent05f879242cedc51b52d70804261f502a94ac5893 (diff)
downloadbsdgames-darwin-7d7fd1d69fceb79900e4d597c5e2bdbad06d6cc0.tar.gz
bsdgames-darwin-7d7fd1d69fceb79900e4d597c5e2bdbad06d6cc0.zip
constify, per PR 6148
Diffstat (limited to 'rogue/machdep.c')
-rw-r--r--rogue/machdep.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/rogue/machdep.c b/rogue/machdep.c
index f5e90dd2..7e23ebf0 100644
--- a/rogue/machdep.c
+++ b/rogue/machdep.c
@@ -1,4 +1,4 @@
-/* $NetBSD: machdep.c,v 1.8 1998/07/27 01:12:35 mycroft Exp $ */
+/* $NetBSD: machdep.c,v 1.9 1998/11/10 13:01:32 hubertf Exp $ */
/*
* Copyright (c) 1988, 1993
@@ -41,7 +41,7 @@
#if 0
static char sccsid[] = "@(#)machdep.c 8.1 (Berkeley) 5/31/93";
#else
-__RCSID("$NetBSD: machdep.c,v 1.8 1998/07/27 01:12:35 mycroft Exp $");
+__RCSID("$NetBSD: machdep.c,v 1.9 1998/11/10 13:01:32 hubertf Exp $");
#endif
#endif /* not lint */
@@ -192,7 +192,7 @@ md_ignore_signals()
int
md_get_file_id(fname)
- char *fname;
+ const char *fname;
{
struct stat sbuf;
@@ -212,7 +212,7 @@ md_get_file_id(fname)
int
md_link_count(fname)
-char *fname;
+ const char *fname;
{
struct stat sbuf;
@@ -270,7 +270,7 @@ md_gct(rt_buf)
void
md_gfmt(fname, rt_buf)
- char *fname;
+ const char *fname;
struct rogue_time *rt_buf;
{
struct stat sbuf;
@@ -302,7 +302,7 @@ md_gfmt(fname, rt_buf)
boolean
md_df(fname)
- char *fname;
+ const char *fname;
{
if (unlink(fname)) {
return(0);
@@ -384,7 +384,7 @@ md_sleep(nsecs)
char *
md_getenv(name)
- char *name;
+ const char *name;
{
char *value;
@@ -495,7 +495,7 @@ md_lock(l)
void
md_shell(shell)
- char *shell;
+ const char *shell;
{
int w;