define u_int8_t, int8_t, u_int16_t, int16_t, u_int32_t, int32_t for m68k

This commit is contained in:
Laurent Vivier 2004-06-02 17:37:06 +00:00
parent 20555165c2
commit 632dcb29bb

View File

@ -4,5 +4,12 @@
*
*/
typedef unsigned char u_int8_t;
typedef signed char int8_t;
typedef unsigned short u_int16_t;
typedef signed short int16_t;
typedef unsigned int u_int32_t;
typedef signed int int32_t;
extern void memdump(unsigned char* addr, unsigned long size);
extern void error(char *x);