tadd s32int, s64int, s16int - plan9port - [fork] Plan 9 from user space
 (HTM) git clone git://src.adamsgaard.dk/plan9port
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit 785a73647a2191bd7a907a7fcc57542a6f7452e6
 (DIR) parent 25cb46f9304dbb20aee3713a1c4cc4224c0fc745
 (HTM) Author: rsc <devnull@localhost>
       Date:   Mon, 19 Apr 2004 05:52:43 +0000
       
       add s32int, s64int, s16int
       
       Diffstat:
         M include/u.h                         |       5 +++++
       
       1 file changed, 5 insertions(+), 0 deletions(-)
       ---
 (DIR) diff --git a/include/u.h b/include/u.h
       t@@ -64,6 +64,8 @@ typedef long p9jmp_buf[sizeof(sigjmp_buf)/sizeof(long)];
        
        typedef signed char schar;
        typedef unsigned int u32int;
       +typedef int s32int;
       +
        #ifdef _NEEDUCHAR
                typedef unsigned char uchar;
        #endif
       t@@ -79,8 +81,11 @@ typedef unsigned int u32int;
        typedef unsigned long long uvlong;
        typedef long long vlong;
        typedef uvlong u64int;
       +typedef vlong s64int;
        typedef uchar u8int;
       +typedef schar s8int;
        typedef ushort u16int;
       +typedef short s16int;
        
        #undef _NEEDUCHAR
        #undef _NEEDUSHORT