diff options
author | Yegappan Lakshmanan <yegappan@yahoo.com> | 2021-08-06 21:51:55 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2021-08-06 21:51:55 +0200 |
commit | cbae5802832b29f3a1af4cb6b0fc8cf69f17cbf4 (patch) | |
tree | ca9812e45634ddce3042e0723892cae596c6e62c /src/Make_vms.mms | |
parent | 11328bc7df0ecc47f4025a10bb86882a659e9994 (diff) | |
download | vim-git-cbae5802832b29f3a1af4cb6b0fc8cf69f17cbf4.tar.gz |
patch 8.2.3301: memory allocation functions don't have their own placev8.2.3301
Problem: Memory allocation functions don't have their own place.
Solution: Move memory allocation functions to alloc.c. (Yegappan
Lakshmanan, closes #8717)
Diffstat (limited to 'src/Make_vms.mms')
-rw-r--r-- | src/Make_vms.mms | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/Make_vms.mms b/src/Make_vms.mms index 3f65201c5..9dde7616e 100644 --- a/src/Make_vms.mms +++ b/src/Make_vms.mms @@ -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 |