blob: 54aa6e3ef743f9d1695d1bc9a5da250b23b302ba (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#pragma once
#ifndef __BITS_IN_ADDR_H_
#error "Internal header — include the public API header instead."
#endif
typedef __UINT32_TYPE__ in_addr_t;
struct in_addr {
in_addr_t s_addr;
};
|