Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/vax/include Use machine instead of vax in include p...



details:   https://anonhg.NetBSD.org/src/rev/156afcd10037
branches:  trunk
changeset: 486702:156afcd10037
user:      ragge <ragge%NetBSD.org@localhost>
date:      Sat May 27 16:44:14 2000 +0000

description:
Use machine instead of vax in include path.

diffstat:

 sys/arch/vax/include/bswap.h          |  4 ++--
 sys/arch/vax/include/endian_machdep.h |  4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diffs (34 lines):

diff -r a91715464423 -r 156afcd10037 sys/arch/vax/include/bswap.h
--- a/sys/arch/vax/include/bswap.h      Sat May 27 16:38:02 2000 +0000
+++ b/sys/arch/vax/include/bswap.h      Sat May 27 16:44:14 2000 +0000
@@ -1,4 +1,4 @@
-/*      $NetBSD: bswap.h,v 1.2 1999/08/21 05:39:55 simonb Exp $      */
+/*      $NetBSD: bswap.h,v 1.3 2000/05/27 16:44:14 ragge Exp $      */
 
 /* Written by Manuel Bouyer. Public domain */
 
@@ -10,7 +10,7 @@
 
 #ifdef  __GNUC__
 
-#include <vax/byte_swap.h>
+#include <machine/byte_swap.h>
 #define bswap16(x)      __byte_swap_word(x)
 #define bswap32(x)      __byte_swap_long(x)
 
diff -r a91715464423 -r 156afcd10037 sys/arch/vax/include/endian_machdep.h
--- a/sys/arch/vax/include/endian_machdep.h     Sat May 27 16:38:02 2000 +0000
+++ b/sys/arch/vax/include/endian_machdep.h     Sat May 27 16:44:14 2000 +0000
@@ -1,10 +1,10 @@
-/*     $NetBSD: endian_machdep.h,v 1.1 2000/03/17 00:09:26 mycroft Exp $       */
+/*     $NetBSD: endian_machdep.h,v 1.2 2000/05/27 16:44:14 ragge Exp $ */
 
 #define _BYTE_ORDER _LITTLE_ENDIAN
 
 #ifdef __GNUC__
 
-#include <vax/byte_swap.h>
+#include <machine/byte_swap.h>
 
 #define        ntohl(x)        __byte_swap_long(x)
 #define ntohs(x)        __byte_swap_word(x)



Home | Main Index | Thread Index | Old Index