mirror of
https://github.com/vivier/EMILE.git
synced 2024-11-14 06:08:49 +00:00
16 lines
370 B
C
16 lines
370 B
C
/*
|
|
*
|
|
* (c) 2004 Laurent Vivier <LaurentVivier@wanadoo.fr>
|
|
*
|
|
*/
|
|
|
|
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) __attribute__ ((noreturn));
|