From 3584d5fb31de58aef717b4eb8b71be4093e10430 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Sun, 28 Jan 2001 22:44:38 +0000 Subject: Update. * inet/arpa/inet.h: Don't include . Define socklen_t if not already happened. * inet/netinet/in.h: Don't include , use . Don't include and . --- inet/arpa/inet.h | 9 +++++++-- inet/netinet/in.h | 7 ++----- 2 files changed, 9 insertions(+), 7 deletions(-) (limited to 'inet') diff --git a/inet/arpa/inet.h b/inet/arpa/inet.h index a9381de6da..945342531e 100644 --- a/inet/arpa/inet.h +++ b/inet/arpa/inet.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1997, 1999, 2000 Free Software Foundation, Inc. +/* Copyright (C) 1997, 1999, 2000, 2001 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -20,9 +20,14 @@ #define _ARPA_INET_H 1 #include -#include #include /* To define `struct in_addr'. */ +/* Type for length arguments in socket calls. */ +#ifndef __socklen_t_defined +typedef __socklen_t socklen_t; +# define __socklen_t_defined +#endif + __BEGIN_DECLS /* Convert Internet host address from numbers-and-dots notation in CP diff --git a/inet/netinet/in.h b/inet/netinet/in.h index 3ffa5e2c54..ececb553c3 100644 --- a/inet/netinet/in.h +++ b/inet/netinet/in.h @@ -20,11 +20,8 @@ #define _NETINET_IN_H 1 #include -#include #include - -#include -#include +#include __BEGIN_DECLS @@ -212,7 +209,7 @@ extern const struct in6_addr in6addr_loopback; /* ::1 */ #define INET6_ADDRSTRLEN 46 /* Get the definition of the macro to define the common sockaddr members. */ -#include +#include /* Structure describing an Internet socket address. */ -- cgit v1.2.3