Changeset afbe96a in mainline for libc/arch/amd64/include/types.h


Ignore:
Timestamp:
2006-07-04T17:18:24Z (18 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
0166e99
Parents:
09087d2
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
  • libc/arch/amd64/include/types.h

    r09087d2 rafbe96a  
    2727 */
    2828
    29  /** @addtogroup libcamd64
     29/** @addtogroup libcamd64
    3030 * @{
    3131 */
     
    4141typedef ssize_t off_t;
    4242
    43 typedef char int8_t;
     43typedef signed char int8_t;
    4444typedef short int int16_t;
    4545typedef int int32_t;
     
    5151typedef unsigned long long int uint64_t;
    5252
     53typedef uint64_t uintptr_t;
     54
    5355#endif
    5456
    55 
    56  /** @}
     57/** @}
    5758 */
    58  
    59  
Note: See TracChangeset for help on using the changeset viewer.