elm_conform.c : MIN and MAX not always defined

SVN revision: 59514
This commit is contained in:
Vincent Torri 2011-05-18 16:49:20 +00:00
parent 9cfb487605
commit d35990ebbc
1 changed files with 8 additions and 0 deletions

View File

@ -1,6 +1,14 @@
#include <Elementary.h>
#include "elm_priv.h"
#ifndef MIN
# define MIN(a,b) ((a) < (b)) ? (a) : (b)
#endif
#ifndef MAX
# define MAX(a,b) ((a) < (b)) ? (b) : (a)
#endif
/**
* @defgroup Conformant Conformant
*