3 - Patch up gcc inline mess.
5 --- src/storage.h~ 2003-12-02 08:25:00.000000000 +0000
7 @@ -46,7 +48,7 @@ extern Storage *storage_new (int base, i
8 extern void storage_construct (Storage *stor, int base, int size);
9 extern void storage_destroy (void *stor);
11 -extern inline uint8_t
12 +static inline uint8_t
13 storage_readb (Storage *stor, int addr)
15 int _addr = addr - stor->base;
16 @@ -60,7 +62,7 @@ storage_readb (Storage *stor, int addr)
17 return stor->data[_addr];
20 -extern inline uint16_t
21 +static inline uint16_t
22 storage_readw (Storage *stor, int addr)
24 int _addr = addr - stor->base;