Drop the GNU malloc.c, realloc.c, and xmalloc.c.

We live in the 21st century, and we require C99 semantics, so we do not need to
work around buggy libcs. The xmalloc() and related functions are now static
inline functions.
This commit is contained in:
Guus Sliepen 2011-06-02 17:45:06 +02:00
parent e452a933f9
commit 25b467638a
8 changed files with 66 additions and 767 deletions

View file

@ -251,8 +251,6 @@ bool detach(void) {
logger(LOG_NOTICE, "tincd %s (%s %s) starting, debug level %d",
VERSION, __DATE__, __TIME__, debug_level);
xalloc_fail_func = memory_full;
return true;
}