From fc2548593f90df6f18de3d0e80c3804da98a0e9d Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?IOhannes=20m=20zm=C3=B6lnig?=
 <zmoelnig@users.sourceforge.net>
Date: Wed, 22 Apr 2015 21:32:58 +0000
Subject: avoid redeclaration of _get_output_format()

newer MinGW ships it.
no idea how to detect this automatically

svn path=/trunk/externals/zexy/; revision=17454
---
 src/rawprint.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

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;
-- 
cgit v1.2.1