Changeset 18acad5 in mainline


Ignore:
Timestamp:
2006-03-14T13:03:35Z (19 years ago)
Author:
Josef Cejka <malyzelenyhnus@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
79522a7
Parents:
4ba1db5
Message:

Added missing uspace types definitions to non-ia32 arch.

Location:
libc/arch
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • libc/arch/amd64/include/types.h

    r4ba1db5 r18acad5  
    3434typedef signed int ssize_t;
    3535
     36typedef char int8_t;
     37typedef short int int16_t;
     38typedef int int32_t;
     39typedef long long int int64_t;
     40
     41typedef unsigned char uint8_t;
     42typedef unsigned short int uint16_t;
     43typedef unsigned int uint32_t;
     44typedef unsigned long long int uint64_t;
     45
    3646#endif
  • libc/arch/ia64/include/types.h

    r4ba1db5 r18acad5  
    3434typedef signed int ssize_t;
    3535
     36typedef char int8_t;
     37typedef short int int16_t;
     38typedef int int32_t;
     39typedef long int int64_t;
     40
     41typedef unsigned char uint8_t;
     42typedef unsigned short int uint16_t;
     43typedef unsigned int uint32_t;
     44typedef unsigned long int uint64_t;
     45
    3646#endif
  • libc/arch/mips32/include/types.h

    r4ba1db5 r18acad5  
    3434typedef signed int ssize_t;
    3535
     36typedef char int8_t;
     37typedef short int int16_t;
     38typedef long int int32_t;
     39typedef long long int int64_t;
     40
     41typedef unsigned char uint8_t;
     42typedef unsigned short int uint16_t;
     43typedef unsigned long int uint32_t;
     44typedef unsigned long long int uint64_t;
     45
    3646#endif
Note: See TracChangeset for help on using the changeset viewer.