X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/d483f591fd771565b580ae73a6fc3c18b8ef4137..386fdb787b4d39af174e239965e51008bc9c330d:/src/portable.h diff --git a/src/portable.h b/src/portable.h index c4caaf9a7c..cbc1c57c57 100644 --- a/src/portable.h +++ b/src/portable.h @@ -1,7 +1,7 @@ /* portable -- header loading to write portable code */ /* loads much more stuff than sysdep.h since the latter is in public interface*/ -/* Copyright (c) 2004-2010, 2012-2014. The SimGrid Team. +/* Copyright (c) 2004-2010, 2012-2015. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it @@ -108,17 +108,6 @@ extern int asnprintf(char **ptr, size_t str_m, const char *fmt, /*args */ extern int vasnprintf(char **ptr, size_t str_m, const char *fmt, va_list ap); -/* - * That's needed to protect solaris's printf from ever seing NULL associated to a %s format - * (without adding an extra check on working platforms :) - */ - -#ifdef PRINTF_NULL_WORKING -# define PRINTF_STR(a) (a) -#else -# define PRINTF_STR(a) (a)?:"(null)" -#endif - /* * What we need to extract the backtrace in exception handling code */