Changeset 4e2cf8b in mainline for libc/arch


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

Userspace printf, stdarg, and some other printf support.

File:
1 edited

Legend:

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

    rdf50cf6 r4e2cf8b  
    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
Note: See TracChangeset for help on using the changeset viewer.