2011-07-23 19:41:47 +04:00
|
|
|
/*
|
|
|
|
* Copyright 2011, Haiku, Inc. All Rights Reserved.
|
|
|
|
* Distributed under the terms of the MIT License.
|
|
|
|
*/
|
|
|
|
#ifndef _NETINET_IN_SYSTM_H_
|
|
|
|
#define _NETINET_IN_SYSTM_H_
|
|
|
|
|
|
|
|
|
2015-04-16 08:29:58 +03:00
|
|
|
#ifdef _BSD_SOURCE
|
|
|
|
|
|
|
|
|
2011-07-23 19:41:47 +04:00
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
|
|
|
|
typedef uint16_t n_short;
|
|
|
|
typedef uint32_t n_long;
|
|
|
|
typedef uint32_t n_time;
|
|
|
|
|
|
|
|
|
2015-04-16 08:29:58 +03:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2011-07-23 19:41:47 +04:00
|
|
|
#endif /* _NETINET_IN_SYSTM_H_ */
|