summaryrefslogtreecommitdiff
path: root/include/bits/in_addr.h
blob: 1d7ac0afc23c1f5da0934136471008df05f6d8ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef __BITS_IN_ADDR_H
#define __BITS_IN_ADDR_H

#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;
};

#endif