Changeset d22645e in mainline for arch/ppc64/loader/types.h


Ignore:
Timestamp:
2006-06-25T21:51:11Z (19 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
b7b5f83
Parents:
ce8725be
Message:

Even though the ppc64 doesn't build currently, perform cleanup in the spirit of previous changes to mips32 and ppc32.

File:
1 moved

Legend:

Unmodified
Added
Removed
  • arch/ppc64/loader/types.h

    rce8725be rd22645e  
    2727 */
    2828
    29 #ifndef __PRINTF_H__
    30 #define __PRINTF_H__
     29#ifndef TYPES_H__
     30#define TYPES_H__
    3131
    32 #define INT8    1
    33 #define INT16   2
    34 #define INT32   4
    35 #define INT64   8
     32#include <gentypes.h>
    3633
    3734typedef signed char __s8;
     
    4037typedef unsigned short __u16;
    4138typedef unsigned int __u32;
    42 typedef unsigned long __u64;
     39typedef unsigned long  __u64;
    4340
    4441typedef __u64 __address;
    4542typedef __u64 __native;
    4643
    47 typedef char *char_ptr;
    48 
    49 void puts(const char *str);
    50 void printf(const char *fmt, ...);
    51 
    5244#endif
Note: See TracChangeset for help on using the changeset viewer.