Correct definition of "struct in_addr".

This commit is contained in:
Michael Kerrisk 2007-08-27 15:52:38 +00:00
parent 6486ef0578
commit 9f8162f91b
1 changed files with 4 additions and 2 deletions

View File

@ -137,9 +137,11 @@ is defined in \fInetinet/in.h\fP as:
.sp
.RS
.nf
typedef uint32_t in_addr_t;
struct in_addr {
unsigned long int s_addr;
}
in_addr_t s_addr;
};
.fi
.RE
.PP