2011-07-23 15:41:47 +00: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_
|
|
|
|
|
|
|
|
|
2019-07-20 12:02:02 +02:00
|
|
|
#include <features.h>
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef _DEFAULT_SOURCE
|
2015-04-16 07:29:58 +02:00
|
|
|
|
|
|
|
|
2011-07-23 15:41:47 +00:00
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
|
|
|
|
typedef uint16_t n_short;
|
|
|
|
typedef uint32_t n_long;
|
|
|
|
typedef uint32_t n_time;
|
|
|
|
|
|
|
|
|
2015-04-16 07:29:58 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2011-07-23 15:41:47 +00:00
|
|
|
#endif /* _NETINET_IN_SYSTM_H_ */
|