picodrive/pico/carthw/svp
Tomáš Kelemen (vudiq) 8d04801518 remove fflush() call before exit()
the buffer is flushed anyways at exit() and fixes compile error with
gcc14:

    pico/carthw/svp/compiler.c: In function 'ssp_translate_block':
    pico/carthw/svp/compiler.c:1800:24: error: passing argument 1 of 'rfflush' from incompatible pointer type [-Wincompatible-pointer-types]
     1800 |                 fflush(stdout);
          |                        ^~~~~~
          |                        |
          |                        FILE *
    In file included from ./pico/pico_port.h:12,
                     from ./pico/pico_int.h:15,
                     from pico/carthw/svp/compiler.c:9:
    platform/libretro/libretro-common/include/streams/file_stream_transforms.h:89:25: note: expected 'RFILE *' but argument is of type 'FILE *'
       89 | int64_t rfflush(RFILE * stream);
          |                 ~~~~~~~~^~~~~~

this error presents itself when building the libretro core, so this
could be also solved by wrapping the call to fflush():

    #ifndef __LIBRETRO__
    		fflush(stdout);
    #else
                fflush((RFILE *)stdout);
    #endif
2024-05-25 10:26:16 +02:00
..
compiler.c remove fflush() call before exit() 2024-05-25 10:26:16 +02:00
compiler.h svp: convert asm to ual / apple gas 2013-07-29 02:57:43 +03:00
imageformat.txt lowercasing filenames, part3 2008-08-28 12:36:57 +00:00
memory.c core, structural cleanup, fixes and improvements for type issues #2 2021-01-01 12:44:02 +01:00
ssp16.c core, structural cleanup, fixes and improvements for type issues #2 2021-01-01 12:44:02 +01:00
ssp16.h fixes for big endian support (svp drc, libpicofe update) 2021-02-25 09:41:55 +01:00
stub_arm.S core, structural cleanup, fixes and improvements for type issues #2 2021-01-01 12:44:02 +01:00
svp.c fixes and improvements for type issues, part 3 2021-02-06 01:14:07 +01:00