Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/alpha/alpha Const poison local printf() prototype.



details:   https://anonhg.NetBSD.org/src/rev/3aea867fbb3d
branches:  trunk
changeset: 474222:3aea867fbb3d
user:      thorpej <thorpej%NetBSD.org@localhost>
date:      Thu Jul 01 20:11:39 1999 +0000

description:
Const poison local printf() prototype.

diffstat:

 sys/arch/alpha/alpha/genassym.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 336c6409a2db -r 3aea867fbb3d sys/arch/alpha/alpha/genassym.c
--- a/sys/arch/alpha/alpha/genassym.c   Thu Jul 01 20:10:27 1999 +0000
+++ b/sys/arch/alpha/alpha/genassym.c   Thu Jul 01 20:11:39 1999 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: genassym.c,v 1.22 1999/04/20 21:08:23 thorpej Exp $ */
+/* $NetBSD: genassym.c,v 1.23 1999/07/01 20:11:39 thorpej Exp $ */
 
 /*
  * Copyright (c) 1994, 1995 Gordon W. Ross
@@ -62,7 +62,7 @@
 
 #include <sys/cdefs.h>                 /* RCS ID & Copyright macro defns */
 
-__RCSID("$NetBSD: genassym.c,v 1.22 1999/04/20 21:08:23 thorpej Exp $");
+__RCSID("$NetBSD: genassym.c,v 1.23 1999/07/01 20:11:39 thorpej Exp $");
 
 #include <sys/param.h>
 #include <sys/buf.h>
@@ -85,7 +85,7 @@
 #include <vm/vm.h>
 
 /* Note: Avoid /usr/include for cross compilation! */
-extern void printf __P((char *fmt, ...));
+extern void printf __P((const char *fmt, ...));
 extern void exit __P((int));
 
 #define        offsetof(type, member) ((size_t)(&((type *)0)->member))



Home | Main Index | Thread Index | Old Index