1
0
forked from aniani/vim

patch 8.2.3301: memory allocation functions don't have their own place

Problem:    Memory allocation functions don't have their own place.
Solution:   Move memory allocation functions to alloc.c.  (Yegappan
            Lakshmanan, closes #8717)
This commit is contained in:
Yegappan Lakshmanan
2021-08-06 21:51:55 +02:00
committed by Bram Moolenaar
parent 11328bc7df
commit cbae580283
13 changed files with 938 additions and 884 deletions

View File

@@ -306,6 +306,7 @@ ALL_LIBS = $(LIBS) $(GUI_LIB_DIR) $(GUI_LIB) $(XPM_LIB)\
$(PERL_LIB) $(PYTHON_LIB) $(TCL_LIB) $(RUBY_LIB) $(LUA_LIB)
SRC = \
alloc.c \
arabic.c \
arglist.c \
autocmd.c \
@@ -425,6 +426,7 @@ SRC = \
$(XDIFF_SRC)
OBJ = \
alloc.obj \
arabic.obj \
arglist.obj \
autocmd.obj \
@@ -738,6 +740,9 @@ lua_env :
-@ !
.ENDIF
alloc.obj : alloc.c vim.h [.auto]config.h feature.h os_unix.h \
ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
[.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h
arabic.obj : arabic.c vim.h
arglist.obj : arglist.c vim.h [.auto]config.h feature.h os_unix.h
autocmd.obj : autocmd.c vim.h [.auto]config.h feature.h os_unix.h