diff options
author | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2015-04-22 21:32:58 +0000 |
---|---|---|
committer | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2015-04-22 21:32:58 +0000 |
commit | fc2548593f90df6f18de3d0e80c3804da98a0e9d (patch) | |
tree | 1b4c822d9fd8103dcb0b46c225156539e85da6f8 /src | |
parent | baae0aa30080d0428b1576f6c3588bca258f1872 (diff) |
avoid redeclaration of _get_output_format()
newer MinGW ships it.
no idea how to detect this automatically
svn path=/trunk/externals/zexy/; revision=17454
Diffstat (limited to 'src')
-rw-r--r-- | src/rawprint.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/rawprint.c b/src/rawprint.c index 32c75ad..68aac73 100644 --- a/src/rawprint.c +++ b/src/rawprint.c @@ -25,7 +25,9 @@ #endif #if !defined( _MSC_VER ) && defined (_WIN32) -int _get_output_format( void ){ return 0; } +# ifndef _get_output_format +//int _get_output_format( void ){ return 0; } +# endif #endif static t_class *rawprint_class; |