From d467d0cf093c7c3a628a8a790f34ac216d764392 Mon Sep 17 00:00:00 2001 From: pgen Date: Thu, 28 Jan 2021 21:41:01 +0100 Subject: Make sure that smenu can be built and run on AIX. - Add some encodings. - Manage some terminfo database specificities. - Avoid type collisions. - Work around an incompatibility in memory management functions. --- xmalloc.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'xmalloc.h') diff --git a/xmalloc.h b/xmalloc.h index b43cbeb..d724da1 100644 --- a/xmalloc.h +++ b/xmalloc.h @@ -1,6 +1,12 @@ #ifndef XMALLOC_H #define XMALLOC_H +void * +rpl_malloc(size_t size); + +void * +rpl_realloc(void * ptr, size_t size); + void * xmalloc(size_t size); -- cgit v1.2.3