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


Ignore:
Timestamp:
2006-07-04T17:18:24Z (19 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/ia64/include/types.h

    r09087d2 rafbe96a  
    2727 */
    2828
    29  /** @addtogroup libcia64       
     29/** @addtogroup libcia64       
    3030 * @{
    3131 */
     
    3333 */
    3434
    35 #ifndef __LIBC__TYPES_H__
    36 #define __LIBC__TYPES_H__
     35#ifndef LIBC_ia64_TYPES_H_
     36#define LIBC_ia64_TYPES_H_
    3737
    3838typedef unsigned long long sysarg_t;
     
    5151typedef unsigned long int uint64_t;
    5252
     53typedef uint64_t uintptr_t;
     54
     55typedef unsigned char __r8;                     /* Reserve byte */
     56typedef unsigned short __r16;
     57typedef unsigned int __r32;
     58typedef unsigned long __r64;
     59
     60typedef struct __r128{
     61        __r64 lo;
     62        __r64 hi;
     63} __r128;
     64
    5365#endif
    5466
    55  /** @}
     67/** @}
    5668 */
    57 
Note: See TracChangeset for help on using the changeset viewer.