aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/nvim/memory.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/nvim/memory.h b/src/nvim/memory.h
index dc09e49073..c37ec56adc 100644
--- a/src/nvim/memory.h
+++ b/src/nvim/memory.h
@@ -136,13 +136,6 @@ char *xstpncpy(char *restrict dst, const char *restrict src, size_t maxlen);
void *xmemdup(const void *data, size_t len)
FUNC_ATTR_MALLOC FUNC_ATTR_WARN_UNUSED_RESULT FUNC_ATTR_NONNULL_RET;
-/// Old low level memory allocation function.
-///
-/// @deprecated use xmalloc() directly instead
-/// @param size
-/// @return pointer to allocated space. Never NULL
-char_u *lalloc(long_u size, int message) FUNC_ATTR_MALLOC FUNC_ATTR_ALLOC_SIZE(1);
-
void do_outofmem_msg(long_u size);
void free_all_mem(void);