pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/pkgtools/libnbcompat/files Fix minor problem in #if co...
details: https://anonhg.NetBSD.org/pkgsrc/rev/cc75282c009a
branches: trunk
changeset: 479815:cc75282c009a
user: jlam <jlam%pkgsrc.org@localhost>
date: Mon Aug 23 03:49:05 2004 +0000
description:
Fix minor problem in #if condition.
diffstat:
pkgtools/libnbcompat/files/strtoll.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diffs (27 lines):
diff -r 003342965e6c -r cc75282c009a pkgtools/libnbcompat/files/strtoll.c
--- a/pkgtools/libnbcompat/files/strtoll.c Mon Aug 23 03:48:41 2004 +0000
+++ b/pkgtools/libnbcompat/files/strtoll.c Mon Aug 23 03:49:05 2004 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: strtoll.c,v 1.5 2004/08/23 03:32:12 jlam Exp $ */
+/* $NetBSD: strtoll.c,v 1.6 2004/08/23 03:49:05 jlam Exp $ */
/*-
* Copyright (c) 1992, 1993
@@ -39,7 +39,7 @@
#if 0
static char sccsid[] = "from: @(#)strtoq.c 8.1 (Berkeley) 6/4/93";
#else
-__RCSID("$NetBSD: strtoll.c,v 1.5 2004/08/23 03:32:12 jlam Exp $");
+__RCSID("$NetBSD: strtoll.c,v 1.6 2004/08/23 03:49:05 jlam Exp $");
#endif
#endif /* LIBC_SCCS and not lint */
@@ -74,7 +74,7 @@
*/
/* LONGLONG */
long long int
-#ifdef _LIBC && 0
+#if defined(_LIBC) && 0
_strtoll(nptr, endptr, base)
#else
strtoll(nptr, endptr, base)
Home |
Main Index |
Thread Index |
Old Index