You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
398 B
14 lines
398 B
Index: xmalloc.h |
|
--- xmalloc.h.orig 2009-01-04 20:32:34.000000000 +0100 |
|
+++ xmalloc.h 2019-01-07 20:05:54.821108000 +0100 |
|
@@ -38,6 +38,10 @@ |
|
|
|
#endif /* !PTR_T */ |
|
|
|
+#define xmalloc readline_xmalloc |
|
+#define xrealloc readline_xrealloc |
|
+#define xfree readline_xfree |
|
+ |
|
extern PTR_T xmalloc PARAMS((size_t)); |
|
extern PTR_T xrealloc PARAMS((void *, size_t)); |
|
extern void xfree PARAMS((void *));
|
|
|