| 12345678910111213141516171819202122232425 |
- /*
- * This file is subject to the terms and conditions of the GNU General Public
- * License. See the file "COPYING" in the main directory of this archive
- * for more details.
- *
- * Copyright (C) 1994, 1995, 1996, 1999 by Ralf Baechle
- * Copyright (C) 1999 Silicon Graphics, Inc.
- */
- #ifndef _ASM_TYPES_H
- #define _ASM_TYPES_H
- //-------------------------------------------------------------------------------
- // typedef
- //-------------------------------------------------------------------------------
- typedef unsigned int u32;
- typedef unsigned short u16;
- typedef unsigned char u8;
- #ifndef _windows_
- typedef unsigned char bool;
- #define false 0
- #define true 1
- #endif
- #endif /* _ASM_TYPES_H */
|