Source-Changes-HG archive

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

[src/trunk]: src/sys/sys Include <sys/stdint.h> if _STANDALONE (instead of <s...



details:   https://anonhg.NetBSD.org/src/rev/52d514d4f459
branches:  trunk
changeset: 549132:52d514d4f459
user:      simonb <simonb%NetBSD.org@localhost>
date:      Sat Jul 05 16:33:38 2003 +0000

description:
Include <sys/stdint.h> if _STANDALONE (instead of <stdint.h>).

diffstat:

 sys/sys/bootblock.h |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r 8d3e7a753180 -r 52d514d4f459 sys/sys/bootblock.h
--- a/sys/sys/bootblock.h       Sat Jul 05 16:21:17 2003 +0000
+++ b/sys/sys/bootblock.h       Sat Jul 05 16:33:38 2003 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: bootblock.h,v 1.13 2003/04/15 13:59:35 dsl Exp $       */
+/*     $NetBSD: bootblock.h,v 1.14 2003/07/05 16:33:38 simonb Exp $    */
 
 /*-
  * Copyright (c) 2002 The NetBSD Foundation, Inc.
@@ -99,7 +99,7 @@
 #ifndef _SYS_BOOTBLOCK_H
 #define        _SYS_BOOTBLOCK_H
 
-#ifdef _KERNEL
+#if defined(_KERNEL) || defined(_STANDALONE)
 #include <sys/stdint.h>
 #else
 #include <stdint.h>



Home | Main Index | Thread Index | Old Index