MIN def is ambiguous and not defined in this codebase. Defining it here just in case.

SVN revision: 18396
This commit is contained in:
technikolor 2005-11-09 10:58:09 +00:00 committed by technikolor
parent c81e32c6af
commit 4ff58f81fc
1 changed files with 5 additions and 0 deletions

View 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