summaryrefslogtreecommitdiffstats
path: root/xmalloc.h
diff options
context:
space:
mode:
authorpgen <p.gen.progs@gmail.com>2021-01-28 21:41:01 +0100
committerpgen <p.gen.progs@gmail.com>2021-01-29 00:05:24 +0100
commitd467d0cf093c7c3a628a8a790f34ac216d764392 (patch)
tree500bf76999e6c478da045ea6aac1525a336435bf /xmalloc.h
parent2416f3fc5ba9a40cf5e7f5558d2d49b32638ad1e (diff)
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.
Diffstat (limited to 'xmalloc.h')
-rw-r--r--xmalloc.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/xmalloc.h b/xmalloc.h
index b43cbeb..d724da1 100644
--- a/xmalloc.h
+++ b/xmalloc.h
@@ -2,6 +2,12 @@
#define XMALLOC_H
void *
+rpl_malloc(size_t size);
+
+void *
+rpl_realloc(void * ptr, size_t size);
+
+void *
xmalloc(size_t size);
void *