Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/hpcsh/hpcsh use #if defined(x) instead of #if defin...



details:   https://anonhg.NetBSD.org/src/rev/6bbfecbb27ed
branches:  trunk
changeset: 518320:6bbfecbb27ed
user:      lukem <lukem%NetBSD.org@localhost>
date:      Wed Nov 28 05:47:37 2001 +0000

description:
use #if defined(x) instead of #if defined x

diffstat:

 sys/arch/hpcsh/hpcsh/machdep.c |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r fd0d52a80a80 -r 6bbfecbb27ed sys/arch/hpcsh/hpcsh/machdep.c
--- a/sys/arch/hpcsh/hpcsh/machdep.c    Wed Nov 28 05:45:27 2001 +0000
+++ b/sys/arch/hpcsh/hpcsh/machdep.c    Wed Nov 28 05:47:37 2001 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: machdep.c,v 1.13 2001/07/09 18:18:25 uch Exp $ */
+/*     $NetBSD: machdep.c,v 1.14 2001/11/28 05:47:37 lukem Exp $       */
 
 /*-
  * Copyright (c) 2001 The NetBSD Foundation, Inc.
@@ -119,7 +119,7 @@
 extern char cpu_model[];
 extern paddr_t avail_start, avail_end; // XXX
 
-#if defined sh3_debug || defined SYSCALL_DEBUG
+#if defined(sh3_debug) || defined(SYSCALL_DEBUG)
 int cpu_debug_mode = 1;
 #else
 int cpu_debug_mode = 0;



Home | Main Index | Thread Index | Old Index