Changeset 83253ad in mainline for arch/mips32/loader/types.h


Ignore:
Timestamp:
2006-07-04T17:17:44Z (19 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
822b64e
Parents:
fec35544
Message:

Replace old u?? types with respective C99 variants (e.g. uint32_t, int64_t, uintptr_t etc.).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • arch/mips32/loader/types.h

    rfec35544 r83253ad  
    3232#include <gentypes.h>
    3333
    34 typedef signed char __s8;
     34typedef signed char int8_t;
    3535
    36 typedef unsigned char __u8;
    37 typedef unsigned short __u16;
    38 typedef unsigned int __u32;
    39 typedef unsigned long long __u64;
     36typedef unsigned char uint8_t;
     37typedef unsigned short uint16_t;
     38typedef unsigned int uint32_t;
     39typedef unsigned long long uint64_t;
    4040
    41 typedef __u32 __address;
    42 typedef __u32 __native;
     41typedef uint32_t uintptr_t;
     42typedef uint32_t unative_t;
    4343
    4444#endif
Note: See TracChangeset for help on using the changeset viewer.