diff options
| author | John Polstra <jdp@FreeBSD.org> | 1998-09-02 00:53:17 +0000 |
|---|---|---|
| committer | John Polstra <jdp@FreeBSD.org> | 1998-09-02 00:53:17 +0000 |
| commit | cb690d1f0b2725c6a9edfc5f5f3890a610f2927c (patch) | |
| tree | 9acf25abfb92f96cd897d8d012e281017e5f87d9 /lib/libc/net/inet_neta.c | |
| parent | 5ca6331a4cf210f1043195bfe59d19254252e86f (diff) | |
Notes
Diffstat (limited to 'lib/libc/net/inet_neta.c')
| -rw-r--r-- | lib/libc/net/inet_neta.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/lib/libc/net/inet_neta.c b/lib/libc/net/inet_neta.c index 2dc76942fd0c..21b2749a9798 100644 --- a/lib/libc/net/inet_neta.c +++ b/lib/libc/net/inet_neta.c @@ -17,7 +17,7 @@ #if defined(LIBC_SCCS) && !defined(lint) static const char orig_rcsid[] = "From Id: inet_neta.c,v 8.2 1996/08/08 06:54:44 vixie Exp"; -static const char rcsid[] = "$Id: inet_neta.c,v 1.3 1997/02/22 15:00:20 peter Exp $"; +static const char rcsid[] = "$Id: inet_neta.c,v 1.4 1998/02/20 08:13:51 jb Exp $"; #endif #include <sys/types.h> @@ -82,3 +82,10 @@ inet_neta(src, dst, size) errno = EMSGSIZE; return (NULL); } + +/* + * Weak aliases for applications that use certain private entry points, + * and fail to include <arpa/inet.h>. + */ +#undef inet_neta +__weak_reference(__inet_neta, inet_neta); |
