Source-Changes-HG archive

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

[src/trunk]: src/sys/sys Use _LP64 insteadl of __alpha__ to determine if we'r...



details:   https://anonhg.NetBSD.org/src/rev/0109c0376ed9
branches:  trunk
changeset: 526386:0109c0376ed9
user:      eeh <eeh%NetBSD.org@localhost>
date:      Fri May 03 00:27:45 2002 +0000

description:
Use _LP64 insteadl of __alpha__ to determine if we're generating 64-bit
binaries.

diffstat:

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

diffs (18 lines):

diff -r e9fc83db4a7c -r 0109c0376ed9 sys/sys/stat.h
--- a/sys/sys/stat.h    Fri May 03 00:22:16 2002 +0000
+++ b/sys/sys/stat.h    Fri May 03 00:27:45 2002 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: stat.h,v 1.40 2000/04/17 14:31:23 mrg Exp $    */
+/*     $NetBSD: stat.h,v 1.41 2002/05/03 00:27:45 eeh Exp $    */
 
 /*-
  * Copyright (c) 1982, 1986, 1989, 1993
@@ -100,7 +100,7 @@
  * should be removed the next time the stat structure ABI is changed.
  * (This will happen whever we change to 8 byte time_t.)
  */
-#if defined(__alpha__)                 /* XXX XXX XXX */
+#if defined(_LP64)     /* XXXX  && _BSD_TIME_T_ == int */
 #define        __STATPAD(x)    int x;
 #else
 #define        __STATPAD(x)    /* nothing */



Home | Main Index | Thread Index | Old Index