MIN def is ambiguous and not defined in this codebase. Defining it here just in...
authortechnikolor <technikolor>
Wed, 9 Nov 2005 10:58:09 +0000 (10:58 +0000)
committertechnikolor <technikolor@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Wed, 9 Nov 2005 10:58:09 +0000 (10:58 +0000)
SVN revision: 18396

src/bin/e_dnd.h

index 84e9407..c099eae 100644 (file)
@@ -129,3 +129,8 @@ EAPI void e_drop_handler_del(E_Drop_Handler *handler);
 
 #endif
 #endif
+
+#ifndef MIN
+#define MIN(x, y) (((x) > (y)) ? (y) : (x))
+#endif
+