blob: cd67ca3a5953314d75a3a9b509f124b1a3e7a726 (
plain)
1
2
3
4
5
6
7
8
|
/* $NetBSD: types.h,v 1.8 2014/03/31 11:25:49 martin Exp $ */
#include <mips/types.h>
#if defined(_KERNEL) && defined(MIPS3_5900)
typedef int int128_t __attribute__((__mode__(TI)));
typedef unsigned int u_int128_t __attribute__((__mode__(TI)));
#endif /* _KERNEL && MIPS3_5900 */
|