From eabf01903d4ae810f4eb29736b8535205a5c0bb7 Mon Sep 17 00:00:00 2001 From: oliverschmidt Date: Sat, 17 Nov 2007 23:42:23 +0000 Subject: [PATCH] Replaced most type definitions with reference to stdint.h. --- cpu/6502/6502def.h | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/cpu/6502/6502def.h b/cpu/6502/6502def.h index 3f932e3bc..eb892a096 100644 --- a/cpu/6502/6502def.h +++ b/cpu/6502/6502def.h @@ -30,18 +30,13 @@ * * Author: Oliver Schmidt * - * @(#)$Id: 6502def.h,v 1.1 2007/09/05 10:59:11 oliverschmidt Exp $ + * @(#)$Id: 6502def.h,v 1.2 2007/11/17 23:42:23 oliverschmidt Exp $ */ #ifndef __6502DEF_H__ #define __6502DEF_H__ -typedef signed char int8_t; -typedef unsigned char uint8_t; -typedef signed short int16_t; -typedef unsigned short uint16_t; -typedef signed long int32_t; -typedef unsigned long uint32_t; +#include /* These names are deprecated, use C99 names. */ typedef unsigned char u8_t;