aboutsummaryrefslogtreecommitdiff
path: root/src/memory.h
diff options
context:
space:
mode:
authorJohn Schmidt <john.schmidt.h@gmail.com>2014-04-18 01:52:48 +0200
committerThiago de Arruda <tpadilha84@gmail.com>2014-04-19 09:36:17 -0300
commit63cc8b6934e74da2fd13aa5d9f2254c257a45b1c (patch)
tree0af45b07e1d92d19529b69172431606def237102 /src/memory.h
parent204d3dfafcc5b285d112e023dd5e5b6f1e861146 (diff)
downloadrneovim-63cc8b6934e74da2fd13aa5d9f2254c257a45b1c.tar.gz
rneovim-63cc8b6934e74da2fd13aa5d9f2254c257a45b1c.tar.bz2
rneovim-63cc8b6934e74da2fd13aa5d9f2254c257a45b1c.zip
Remove `lalloc_clear`
Use `xcalloc` instead. Change some local variables to avoid casting.
Diffstat (limited to 'src/memory.h')
-rw-r--r--src/memory.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/memory.h b/src/memory.h
index 4231ce8435..7a9b9053f3 100644
--- a/src/memory.h
+++ b/src/memory.h
@@ -7,7 +7,6 @@
char_u *alloc(unsigned size) FUNC_ATTR_MALLOC FUNC_ATTR_ALLOC_SIZE(1);
char_u *alloc_clear(unsigned size) FUNC_ATTR_MALLOC FUNC_ATTR_ALLOC_SIZE(1);
-char_u *lalloc_clear(long_u size, int message) FUNC_ATTR_MALLOC FUNC_ATTR_ALLOC_SIZE(1);
/// malloc() wrapper
///