X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/88fad0aaff9eb463f048bfdfe4ad6218aba44ddb..181823a28f9e67fec70e2e24dd45b92449808e4b:/src/xbt/log.c diff --git a/src/xbt/log.c b/src/xbt/log.c index 7365993adf..eee33f2c74 100644 --- a/src/xbt/log.c +++ b/src/xbt/log.c @@ -24,6 +24,9 @@ #include "xbt/sysdep.h" #include "xbt/xbt_os_thread.h" +#define MIN(a, b) ((a) < (b) ? (a) : (b)) +#define MAX(a, b) ((a) > (b) ? (a) : (b)) + int xbt_log_no_loc = 0; /* if set to true (with --log=no_loc), file localization will be omitted (for tesh tests) */ static xbt_os_mutex_t log_cat_init_mutex = NULL;