Hi list,
I found an issue when compiling zexy with msys2 on Windows:
rawprint.c:28:5: error: conflicting types for '_get_output_format'
int _get_output_format( void ){ return 0; }
^
In file included from C:/msys32/home/Owner/purr-data/pd/src/m_pd.h:68:0,
from zexy.h:63,
from rawprint.c:20:
C:/msys32/mingw32/i686-w64-mingw32/include/stdio.h:520:32: note: previous declaration of '_get_output_format' was here
_CRTIMP unsigned int __cdecl _get_output_format(void);
^
Makefile:1436: recipe for target 'rawprint.lo' failed
***
Here's the relevant code snippet:
#if !defined( _MSC_VER ) && defined (_WIN32)
int _get_output_format( void ){ return 0; }
#endif
-Jonathan