Drop support for localisation.
[oweals/tinc.git] / lib / xmalloc.c
index 83c57932496219e529a39067480e3816986c2f15..9563391ec688535f110d919772184b90831b5aec 100644 (file)
@@ -34,7 +34,6 @@ void *realloc ();
 void free ();
 #endif
 
-#include "gettext.h"
 #include "xalloc.h"
 
 #ifndef EXIT_FAILURE
@@ -53,7 +52,7 @@ void *xrealloc (void *p, size_t n);
 int xalloc_exit_failure = EXIT_FAILURE;
 
 /* FIXME: describe */
-char *const xalloc_msg_memory_exhausted = N_("Memory exhausted");
+char *const xalloc_msg_memory_exhausted = "Memory exhausted";
 
 /* FIXME: describe */
 void (*xalloc_fail_func) (int) = 0;