mdebug

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 080a656ab2d237da7403da3955ded71cd7be2f17
parent 65a9720cdc71c73d3053eced4190dda2f135ba28
Author: Brian Swetland <swetland@frotz.net>
Date:   Sun, 10 Jan 2016 18:48:21 -0800

fw/types.h - 64bit types

Diffstat:
Minclude/fw/types.h | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/include/fw/types.h b/include/fw/types.h @@ -3,6 +3,8 @@ #ifndef _FW_TYPES_H_ #define _FW_TYPES_H_ +typedef unsigned long int u64; +typedef signed long int i64; typedef unsigned int u32; typedef signed int i32; typedef unsigned short u16;