ac8f81162ca5bf23d8d9aa2657e3ba66bd7fce07
[apps/madmutt.git] / lib / mem.h
1 /*
2  * This file is part of mutt-ng, see http://www.muttng.org/.
3  * It's licensed under the GNU General Public License,
4  * please see the file GPL in the top level source directory.
5  */
6 #ifndef _LIB_MEM_H
7 #define _LIB_MEM_H
8
9 #include <sys/types.h>
10
11 void _mem_realloc (void*, size_t, int, const char*);
12 #define mem_realloc(p,c) _mem_realloc(p,c,__LINE__,__FILE__)
13
14 #endif /* !_LIB_MEM_H */