From 7ef8e4e181d0c410c32d8939f3207e8adfb4e6e0 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jos=C3=A9=20Fonseca?= Date: Thu, 12 Feb 2009 13:54:20 +0000 Subject: [PATCH] progs: Prevent clash with min macro. --- progs/demos/streaming_rect.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/progs/demos/streaming_rect.c b/progs/demos/streaming_rect.c index 4d4656e..294f9c3 100644 --- a/progs/demos/streaming_rect.c +++ b/progs/demos/streaming_rect.c @@ -47,7 +47,10 @@ static void Idle( void ) } /*static int max( int a, int b ) { return a > b ? a : b; }*/ + +#ifndef min static int min( int a, int b ) { return a < b ? a : b; } +#endif static void DrawObject() { -- 2.7.4