Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 975 → Rev 976

/uspace/trunk/libc/arch/amd64/include/types.h
33,4 → 33,14
typedef unsigned int size_t;
typedef signed int ssize_t;
 
typedef char int8_t;
typedef short int int16_t;
typedef int int32_t;
typedef long long int int64_t;
 
typedef unsigned char uint8_t;
typedef unsigned short int uint16_t;
typedef unsigned int uint32_t;
typedef unsigned long long int uint64_t;
 
#endif