summaryrefslogtreecommitdiff
path: root/inet/in6_addr.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1998-12-02 13:44:40 +0000
committerUlrich Drepper <drepper@redhat.com>1998-12-02 13:44:40 +0000
commiteeabe8776dadea2e3cb3eb0b2d792fbc6e0ae198 (patch)
treedfac4db6a92226a1b8bb633b6f42df5890a7e2cd /inet/in6_addr.c
parent19c6b9c8abf9c3d2a3c856ebc32b5cfeb3e2affe (diff)
Update.
1998-12-02 Ulrich Drepper <drepper@cygnus.com> * elf/elf.h: Add R_MIPS_JALR and adjust R_MIPS_NUM appropriately. 1998-12-02 Andreas Jaeger <aj@arthur.rhein-neckar.de> * inet/Versions: Remove inet6_isipv4mapped. 1998-12-02 Philip Blundell <pb@nexus.co.uk> * inet/in6_addr.c (inet6_isipv4mapped): Obsolete, deleted. 1998-11-30 Andreas Schwab <schwab@issan.cs.uni-dortmund.de> * manual/time.texi (Formatting Date and Time): Fix typo. 1998-11-30 Andreas Schwab <schwab@issan.cs.uni-dortmund.de> * sysdeps/unix/sysv/linux/configure.in: Only check for symlinks when configuring natively. Use autoconf macros instead of rolling our own. Handle defaulted prefix.
Diffstat (limited to 'inet/in6_addr.c')
-rw-r--r--inet/in6_addr.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/inet/in6_addr.c b/inet/in6_addr.c
index 69c9c0b468..7460118919 100644
--- a/inet/in6_addr.c
+++ b/inet/in6_addr.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1996, 1997 Free Software Foundation, Inc.
+/* Copyright (C) 1997, 1998 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Philip Blundell <pjb27@cam.ac.uk>, 1997.
@@ -23,8 +23,3 @@ const struct in6_addr in6addr_any =
{ { { 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 } } };
const struct in6_addr in6addr_loopback =
{ { { 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1 } } };
-
-int inet6_isipv4mapped(const struct in6_addr *addr)
-{
- return IN6_IS_ADDR_V4MAPPED(addr);
-}