1/*
2 * Copyright 2009 Haiku Inc.
3 * All rights reserved. Distributed under the terms of the MIT License.
4 */
5#ifndef _KERNEL_ARCH_MIPSEL_TYPES_H
6#define _KERNEL_ARCH_MIPSEL_TYPES_H
7
8typedef unsigned long long	uint64;
9typedef long long			int64;
10typedef unsigned int		uint32;
11typedef int					int32;
12typedef unsigned short		uint16;
13typedef short				int16;
14typedef unsigned char		uint8;
15typedef char				int8;
16
17#endif /* _KERNEL_ARCH_MIPSEL_TYPES_H */
18
19