X-Git-Url: https://www.tinc-vpn.org/git/browse?p=tinc;a=blobdiff_plain;f=lib%2Fxmalloc.c;h=d02f41b9ad23a7e475b99ae84060d3399bd35c84;hp=e1ab3140b79e08c5b2c0077deb564afe041b2c2d;hb=e8f08ced76bf1b9a94dd0dc874ad22761ad8900b;hpb=462ab530e546f5732dfd51134751da6f6910d679;ds=sidebyside diff --git a/lib/xmalloc.c b/lib/xmalloc.c index e1ab3140..d02f41b9 100644 --- a/lib/xmalloc.c +++ b/lib/xmalloc.c @@ -32,15 +32,7 @@ void *realloc (); void free (); #endif -#if ENABLE_NLS -# include -# define _(Text) gettext (Text) -#else -# define textdomain(Domain) -# define _(Text) Text -#endif -#define N_(Text) Text - +#include "gettext.h" #include "xalloc.h" #ifndef EXIT_FAILURE @@ -54,14 +46,6 @@ void *xcalloc (size_t n, size_t s); void *xrealloc (void *p, size_t n); #endif -#ifndef HAVE_DONE_WORKING_MALLOC_CHECK -#error you must run the autoconf test for a properly working malloc -- see malloc.m4 -#endif - -#ifndef HAVE_DONE_WORKING_REALLOC_CHECK -#error you must run the autoconf test for a properly working realloc -- see realloc.m4 -#endif - /* Exit value when the requested amount of memory is not available. The caller may set it to some other value. */ int xalloc_exit_failure = EXIT_FAILURE;