diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2019-04-08 03:44:00 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-08 03:44:00 +0200 |
commit | 11bf89e3b58be1dd534b4ea49b1988150cf7d4b8 (patch) | |
tree | d13bc141aa3ea8b28c38da091d4cf6af1fcbc040 /src/nvim/map.c | |
parent | 943bedfc86abb2c6ac20079c1c3a4baac1bd726e (diff) | |
parent | ce76dffda46db99f073e4bcc159507024d2bfbe8 (diff) | |
download | rneovim-11bf89e3b58be1dd534b4ea49b1988150cf7d4b8.tar.gz rneovim-11bf89e3b58be1dd534b4ea49b1988150cf7d4b8.tar.bz2 rneovim-11bf89e3b58be1dd534b4ea49b1988150cf7d4b8.zip |
Merge #9796 from justinmk/doc
Diffstat (limited to 'src/nvim/map.c')
-rw-r--r-- | src/nvim/map.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/nvim/map.c b/src/nvim/map.c index 9b6f57a56f..90da27cf9f 100644 --- a/src/nvim/map.c +++ b/src/nvim/map.c @@ -1,12 +1,12 @@ // This is an open source non-commercial project. Dear PVS-Studio, please check // it. PVS-Studio Static Code Analyzer for C, C++ and C#: http://www.viva64.com -/// -/// map.c: khash.h wrapper -/// -/// NOTE: Callers must manage memory (allocate) for keys and values. -/// khash.h does not make its own copy of the key or value. -/// +// +// map.c: khash.h wrapper +// +// NOTE: Callers must manage memory (allocate) for keys and values. +// khash.h does not make its own copy of the key or value. +// #include <stdlib.h> #include <stdbool.h> |