summaryrefslogtreecommitdiff
path: root/lib/libc/stdlib
diff options
context:
space:
mode:
authorchristos <christos@NetBSD.org>2005-07-30 15:21:20 +0000
committerchristos <christos@NetBSD.org>2005-07-30 15:21:20 +0000
commit86741d79ab9be2710e8cb0f593db11c61a20bca7 (patch)
treed3aafb29998e9909bc7a34d54bbc626516c54483 /lib/libc/stdlib
parent195158eb085d111ee1edd96a75f2ee00c75dd797 (diff)
- Fix the remaining indr_references so that they define lint symbols.
- Add an internal symbol for strerror_r (thanks klaus for noticing) - Remove internal __strerror
Diffstat (limited to 'lib/libc/stdlib')
-rw-r--r--lib/libc/stdlib/_strtoimax.c6
-rw-r--r--lib/libc/stdlib/_strtoll.c6
-rw-r--r--lib/libc/stdlib/_strtoull.c6
-rw-r--r--lib/libc/stdlib/_strtoumax.c6
4 files changed, 12 insertions, 12 deletions
diff --git a/lib/libc/stdlib/_strtoimax.c b/lib/libc/stdlib/_strtoimax.c
index fbc1db3e1f2..bc496a0f84b 100644
--- a/lib/libc/stdlib/_strtoimax.c
+++ b/lib/libc/stdlib/_strtoimax.c
@@ -1,4 +1,4 @@
-/* $NetBSD: _strtoimax.c,v 1.2 2005/06/12 05:21:27 lukem Exp $ */
+/* $NetBSD: _strtoimax.c,v 1.3 2005/07/30 15:21:20 christos Exp $ */
/*
* Copyright (c) 1996 Christos Zoulas. All rights reserved.
@@ -31,10 +31,10 @@
#include <sys/cdefs.h>
#if defined(LIBC_SCCS) && !defined(lint)
-__RCSID("$NetBSD: _strtoimax.c,v 1.2 2005/06/12 05:21:27 lukem Exp $");
+__RCSID("$NetBSD: _strtoimax.c,v 1.3 2005/07/30 15:21:20 christos Exp $");
#endif /* LIBC_SCCS and not lint */
-#ifdef __indr_reference
+#if defined(__indr_reference) && !defined(__lint__)
__indr_reference(_strtoimax, strtoimax)
#else
diff --git a/lib/libc/stdlib/_strtoll.c b/lib/libc/stdlib/_strtoll.c
index 41e51248b12..2617b91ef85 100644
--- a/lib/libc/stdlib/_strtoll.c
+++ b/lib/libc/stdlib/_strtoll.c
@@ -1,4 +1,4 @@
-/* $NetBSD: _strtoll.c,v 1.3 2005/06/12 05:21:28 lukem Exp $ */
+/* $NetBSD: _strtoll.c,v 1.4 2005/07/30 15:21:20 christos Exp $ */
/*
* Copyright (c) 1996 Christos Zoulas. All rights reserved.
@@ -31,10 +31,10 @@
#include <sys/cdefs.h>
#if defined(LIBC_SCCS) && !defined(lint)
-__RCSID("$NetBSD: _strtoll.c,v 1.3 2005/06/12 05:21:28 lukem Exp $");
+__RCSID("$NetBSD: _strtoll.c,v 1.4 2005/07/30 15:21:20 christos Exp $");
#endif /* LIBC_SCCS and not lint */
-#ifdef __indr_reference
+#if defined(__indr_reference) && !defined(__lint__)
__indr_reference(_strtoll, strtoll)
#else
diff --git a/lib/libc/stdlib/_strtoull.c b/lib/libc/stdlib/_strtoull.c
index c937e1f5cec..d2904c08239 100644
--- a/lib/libc/stdlib/_strtoull.c
+++ b/lib/libc/stdlib/_strtoull.c
@@ -1,4 +1,4 @@
-/* $NetBSD: _strtoull.c,v 1.3 2005/06/12 05:21:28 lukem Exp $ */
+/* $NetBSD: _strtoull.c,v 1.4 2005/07/30 15:21:20 christos Exp $ */
/*
* Copyright (c) 1996 Christos Zoulas. All rights reserved.
@@ -31,10 +31,10 @@
#include <sys/cdefs.h>
#if defined(LIBC_SCCS) && !defined(lint)
-__RCSID("$NetBSD: _strtoull.c,v 1.3 2005/06/12 05:21:28 lukem Exp $");
+__RCSID("$NetBSD: _strtoull.c,v 1.4 2005/07/30 15:21:20 christos Exp $");
#endif /* LIBC_SCCS and not lint */
-#ifdef __indr_reference
+#if defined(__indr_reference) && !defined(__lint__)
__indr_reference(_strtoull, strtoull)
#else
diff --git a/lib/libc/stdlib/_strtoumax.c b/lib/libc/stdlib/_strtoumax.c
index d7089314da0..d1f6b1b6145 100644
--- a/lib/libc/stdlib/_strtoumax.c
+++ b/lib/libc/stdlib/_strtoumax.c
@@ -1,4 +1,4 @@
-/* $NetBSD: _strtoumax.c,v 1.2 2005/06/12 05:21:28 lukem Exp $ */
+/* $NetBSD: _strtoumax.c,v 1.3 2005/07/30 15:21:20 christos Exp $ */
/*
* Copyright (c) 1996 Christos Zoulas. All rights reserved.
@@ -31,10 +31,10 @@
#include <sys/cdefs.h>
#if defined(LIBC_SCCS) && !defined(lint)
-__RCSID("$NetBSD: _strtoumax.c,v 1.2 2005/06/12 05:21:28 lukem Exp $");
+__RCSID("$NetBSD: _strtoumax.c,v 1.3 2005/07/30 15:21:20 christos Exp $");
#endif /* LIBC_SCCS and not lint */
-#ifdef __indr_reference
+#if defined(__indr_reference) && !defined(__lint__)
__indr_reference(_strtoumax, strtoumax)
#else