pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/pkgtools/libnbcompat/files use LL for long long suffix.



details:   https://anonhg.NetBSD.org/pkgsrc/rev/123e8bd30dff
branches:  trunk
changeset: 466263:123e8bd30dff
user:      grant <grant%pkgsrc.org@localhost>
date:      Wed Jan 14 08:58:41 2004 +0000

description:
use LL for long long suffix.

diffstat:

 pkgtools/libnbcompat/files/nbcompat.h |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (26 lines):

diff -r 9f00c17d03b4 -r 123e8bd30dff pkgtools/libnbcompat/files/nbcompat.h
--- a/pkgtools/libnbcompat/files/nbcompat.h     Wed Jan 14 08:55:08 2004 +0000
+++ b/pkgtools/libnbcompat/files/nbcompat.h     Wed Jan 14 08:58:41 2004 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: nbcompat.h,v 1.30 2003/12/19 22:45:14 grant Exp $      */
+/*     $NetBSD: nbcompat.h,v 1.31 2004/01/14 08:58:41 grant Exp $      */
 
 /*-
  * Copyright (c) 2003 The NetBSD Foundation, Inc.
@@ -477,14 +477,14 @@
 #  if defined(LONG_LONG_MAX)
 #   define LLONG_MAX   LONG_LONG_MAX
 #  else
-#   define LLONG_MAX   (0x7fffffffffffffffL)
+#   define LLONG_MAX   (0x7fffffffffffffffLL)
 #  endif
 # endif
 # if ! defined(LLONG_MIN)
 #  if defined(LONG_LONG_MIN)
 #   define LLONG_MIN   LONG_LONG_MIN
 #  else
-#   define LLONG_MIN   (-0x7fffffffffffffffL-1)
+#   define LLONG_MIN   (-0x7fffffffffffffffLL-1)
 #  endif
 # endif
 #else  /* ! HAVE_WORKING_LONG_LONG */



Home | Main Index | Thread Index | Old Index