xref: /netbsd-src/include/endian.h (revision a1df7aec01f4d9a494624b3a8a0f194c5b08df2f)
1*a1df7aecSmaya /*	$NetBSD: endian.h,v 1.1 2017/10/16 11:38:25 maya Exp $	 */
2*a1df7aecSmaya 
3*a1df7aecSmaya /*-
4*a1df7aecSmaya  * Copyright (c) 2017 The NetBSD Foundation, Inc.
5*a1df7aecSmaya  * All rights reserved.
6*a1df7aecSmaya  *
7*a1df7aecSmaya  * Redistribution and use in source and binary forms, with or without
8*a1df7aecSmaya  * modification, are permitted provided that the following conditions
9*a1df7aecSmaya  * are met:
10*a1df7aecSmaya  * 1. Redistributions of source code must retain the above copyright
11*a1df7aecSmaya  *    notice, this list of conditions and the following disclaimer.
12*a1df7aecSmaya  * 2. Redistributions in binary form must reproduce the above copyright
13*a1df7aecSmaya  *    notice, this list of conditions and the following disclaimer in the
14*a1df7aecSmaya  *    documentation and/or other materials provided with the distribution.
15*a1df7aecSmaya  *
16*a1df7aecSmaya  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
17*a1df7aecSmaya  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
18*a1df7aecSmaya  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
19*a1df7aecSmaya  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
20*a1df7aecSmaya  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
21*a1df7aecSmaya  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
22*a1df7aecSmaya  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
23*a1df7aecSmaya  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
24*a1df7aecSmaya  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
25*a1df7aecSmaya  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
26*a1df7aecSmaya  * POSSIBILITY OF SUCH DAMAGE.
27*a1df7aecSmaya  */
28*a1df7aecSmaya 
29*a1df7aecSmaya #ifndef	_ENDIAN_H_
30*a1df7aecSmaya #define	_ENDIAN_H_
31*a1df7aecSmaya 
32*a1df7aecSmaya #include <sys/endian.h>
33*a1df7aecSmaya 
34*a1df7aecSmaya #endif /* !_ENDIAN_H_ */
35