Sign Up
Log In
Log In
or
Sign Up
Places
All Projects
Status Monitor
Collapse sidebar
Emulators:Oldies
uae
uae-static-decl.patch
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File uae-static-decl.patch of Package uae
custom.c:114: error: static declaration of 'sprite_width' follows non-static declaration ../src/include/drawing.h:34: error: previous declaration of 'sprite_width' was here custom.c:237: error: static declaration of 'next_sprite_entry' follows non-static declaration ../src/include/drawing.h:200: error: previous declaration of 'next_sprite_entry' was here cia.c:49: error: static declaration of 'ciaaicr' follows non-static declaration ../src/include/cia.h:18: error: previous declaration of 'ciaaicr' was here cia.c:49: error: static declaration of 'ciaaimask' follows non-static declaration ../src/include/cia.h:18: error: previous declaration of 'ciaaimask' was here cia.c:49: error: static declaration of 'ciabicr' follows non-static declaration ../src/include/cia.h:18: error: previous declaration of 'ciabicr' was here cia.c:49: error: static declaration of 'ciabimask' follows non-static declaration ../src/include/cia.h:18: error: previous declaration of 'ciabimask' was here cia.c:50: error: static declaration of 'ciaacra' follows non-static declaration ../src/include/cia.h:19: error: previous declaration of 'ciaacra' was here cia.c:50: error: static declaration of 'ciaacrb' follows non-static declaration ../src/include/cia.h:19: error: previous declaration of 'ciaacrb' was here cia.c:50: error: static declaration of 'ciabcra' follows non-static declaration ../src/include/cia.h:19: error: previous declaration of 'ciabcra' was here cia.c:50: error: static declaration of 'ciabcrb' follows non-static declaration ../src/include/cia.h:19: error: previous declaration of 'ciabcrb' was here cia.c:53: error: static declaration of 'ciaata' follows non-static declaration ../src/include/cia.h:21: error: previous declaration of 'ciaata' was here cia.c:53: error: static declaration of 'ciaatb' follows non-static declaration ../src/include/cia.h:21: error: previous declaration of 'ciaatb' was here cia.c:53: error: static declaration of 'ciabta' follows non-static declaration ../src/include/cia.h:21: error: previous declaration of 'ciabta' was here cia.c:53: error: static declaration of 'ciabtb' follows non-static declaration ../src/include/cia.h:21: error: previous declaration of 'ciabtb' was here cia.c:57: error: static declaration of 'ciaatod' follows non-static declaration ../src/include/cia.h:22: error: previous declaration of 'ciaatod' was here cia.c:57: error: static declaration of 'ciabtod' follows non-static declaration ../src/include/cia.h:22: error: previous declaration of 'ciabtod' was here cia.c:57: error: static declaration of 'ciaatol' follows non-static declaration ../src/include/cia.h:22: error: previous declaration of 'ciaatol' was here cia.c:57: error: static declaration of 'ciabtol' follows non-static declaration ../src/include/cia.h:22: error: previous declaration of 'ciabtol' was here cia.c:57: error: static declaration of 'ciaaalarm' follows non-static declaration ../src/include/cia.h:22: error: previous declaration of 'ciaaalarm' was here cia.c:57: error: static declaration of 'ciabalarm' follows non-static declaration ../src/include/cia.h:22: error: previous declaration of 'ciabalarm' was here cia.c:58: error: static declaration of 'ciaatlatch' follows non-static declaration ../src/include/cia.h:23: error: previous declaration of 'ciaatlatch' was here cia.c:58: error: static declaration of 'ciabtlatch' follows non-static declaration ../src/include/cia.h:23: error: previous declaration of 'ciabtlatch' was here cia.c:60: error: static declaration of 'ciabpra' follows non-static declaration ../src/include/cia.h:20: error: previous declaration of 'ciabpra' was here autoconf.c:221: error: static declaration of 'rtarea' follows non-static declaration ../src/include/memory.h:75: error: previous declaration of 'rtarea' was here inputdevice.c:514: error: static declaration of 'ievent_alive' follows non-static declaration ../src/include/xwin.h:18: error: previous declaration of 'ievent_alive' was here inputdevice.c:515: error: static declaration of 'lastmx' follows non-static declaration ../src/include/xwin.h:17: error: previous declaration of 'lastmx' was here inputdevice.c:515: error: static declaration of 'lastmy' follows non-static declaration ../src/include/xwin.h:17: error: previous declaration of 'lastmy' was here inputdevice.c:1742: error: static declaration of 'idev' follows non-static declaration ../src/include/inputdevice.h:27: error: previous declaration of 'idev' was here ================================================================================ --- src/include/cia.h +++ src/include/cia.h @@ -15,9 +15,3 @@ extern void dumpcia (void); extern void rethink_cias (void); -extern unsigned int ciaaicr,ciaaimask,ciabicr,ciabimask; -extern unsigned int ciaacra,ciaacrb,ciabcra,ciabcrb; -extern unsigned int ciabpra; -extern unsigned long ciaata,ciaatb,ciabta,ciabtb; -extern unsigned long ciaatod,ciabtod,ciaatol,ciabtol,ciaaalarm,ciabalarm; -extern int ciaatlatch,ciabtlatch; --- src/include/drawing.h +++ src/include/drawing.h @@ -31,7 +31,7 @@ #define max_diwlastword (PIXEL_XPOS(maxhpos) + 16) -extern int lores_factor, lores_shift, sprite_width; +extern int lores_factor, lores_shift; STATIC_INLINE int coord_hw_to_window_x (int x) { @@ -197,8 +197,6 @@ int nr_color_changes, nr_sprites; }; -extern int next_sprite_entry; - extern struct decision line_decisions[2 * (MAXVPOS+1) + 1]; extern struct draw_info line_drawinfo[2][2 * (MAXVPOS+1) + 1]; --- src/include/memory.h +++ src/include/memory.h @@ -72,7 +72,6 @@ } addrbank; extern uae_u8 *filesysory; -extern uae_u8 *rtarea; extern addrbank chipmem_bank; extern addrbank kickmem_bank; --- src/include/xwin.h +++ src/include/xwin.h @@ -14,8 +14,6 @@ extern int buttonstate[3]; extern int newmousecounters; -extern int lastmx, lastmy; -extern int ievent_alive; extern int graphics_setup (void); extern int graphics_init (void); --- src/inputdevice.c +++ src/inputdevice.c @@ -1739,7 +1739,7 @@ return 0; } -static struct inputdevice_functions idev[3]; +struct inputdevice_functions idev[3]; void inputdevice_init (void) {
Locations
Projects
Search
Status Monitor
Help
OpenBuildService.org
Documentation
API Documentation
Code of Conduct
Contact
Support
@OBShq
Terms
openSUSE Build Service is sponsored by
The Open Build Service is an
openSUSE project
.
Sign Up
Log In
Places
Places
All Projects
Status Monitor