aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/nvim/api/private/dispatch.c1
-rw-r--r--src/nvim/api/vim.c1
-rw-r--r--src/nvim/digraph.c1
-rw-r--r--src/nvim/eval/typval.h2
-rw-r--r--src/nvim/ex_docmd.c1
-rw-r--r--src/nvim/ex_eval.c1
-rw-r--r--src/nvim/file_search.c1
-rw-r--r--src/nvim/hardcopy.c1
-rw-r--r--src/nvim/indent_c.c1
-rw-r--r--src/nvim/log.c1
-rw-r--r--src/nvim/msgpack_rpc/helpers.c1
-rw-r--r--src/nvim/msgpack_rpc/server.c1
-rw-r--r--src/nvim/option.c2
-rw-r--r--src/nvim/regexp_nfa.c1
-rw-r--r--src/nvim/shada.c1
-rw-r--r--src/nvim/spell.c1
-rw-r--r--src/nvim/undo.c1
17 files changed, 0 insertions, 19 deletions
diff --git a/src/nvim/api/private/dispatch.c b/src/nvim/api/private/dispatch.c
index 8492225a69..2975df3c68 100644
--- a/src/nvim/api/private/dispatch.c
+++ b/src/nvim/api/private/dispatch.c
@@ -3,7 +3,6 @@
#include <inttypes.h>
#include <stdbool.h>
-#include <stdint.h>
#include <assert.h>
#include <msgpack.h>
diff --git a/src/nvim/api/vim.c b/src/nvim/api/vim.c
index 147830493a..5480bb5173 100644
--- a/src/nvim/api/vim.c
+++ b/src/nvim/api/vim.c
@@ -2,7 +2,6 @@
// it. PVS-Studio Static Code Analyzer for C, C++ and C#: http://www.viva64.com
#include <assert.h>
-#include <stdint.h>
#include <inttypes.h>
#include <stdbool.h>
#include <stdlib.h>
diff --git a/src/nvim/digraph.c b/src/nvim/digraph.c
index 09b365ca12..ea9b210255 100644
--- a/src/nvim/digraph.c
+++ b/src/nvim/digraph.c
@@ -7,7 +7,6 @@
#include <assert.h>
#include <stdbool.h>
-#include <stdint.h>
#include <inttypes.h>
#include "nvim/vim.h"
diff --git a/src/nvim/eval/typval.h b/src/nvim/eval/typval.h
index 823367560a..0b04170cac 100644
--- a/src/nvim/eval/typval.h
+++ b/src/nvim/eval/typval.h
@@ -3,11 +3,9 @@
#include <inttypes.h>
#include <stddef.h>
-#include <stdint.h>
#include <string.h>
#include <stdbool.h>
#include <assert.h>
-#include <limits.h>
#include "nvim/types.h"
#include "nvim/hashtab.h"
diff --git a/src/nvim/ex_docmd.c b/src/nvim/ex_docmd.c
index 154bf9f5f6..61a32bccfa 100644
--- a/src/nvim/ex_docmd.c
+++ b/src/nvim/ex_docmd.c
@@ -8,7 +8,6 @@
#include <assert.h>
#include <string.h>
#include <stdbool.h>
-#include <stdint.h>
#include <stdlib.h>
#include <inttypes.h>
diff --git a/src/nvim/ex_eval.c b/src/nvim/ex_eval.c
index 5b2a1c5c51..28bc222827 100644
--- a/src/nvim/ex_eval.c
+++ b/src/nvim/ex_eval.c
@@ -8,7 +8,6 @@
/// Functions for Ex command line for the +eval feature.
#include <assert.h>
#include <stdbool.h>
-#include <stdint.h>
#include <inttypes.h>
#include <limits.h>
diff --git a/src/nvim/file_search.c b/src/nvim/file_search.c
index 05611fb8ba..ad6a481bc5 100644
--- a/src/nvim/file_search.c
+++ b/src/nvim/file_search.c
@@ -46,7 +46,6 @@
#include <assert.h>
#include <string.h>
#include <stdbool.h>
-#include <stdint.h>
#include <inttypes.h>
#include <limits.h>
diff --git a/src/nvim/hardcopy.c b/src/nvim/hardcopy.c
index 3e0e438434..43cf372e07 100644
--- a/src/nvim/hardcopy.c
+++ b/src/nvim/hardcopy.c
@@ -8,7 +8,6 @@
#include <assert.h>
#include <string.h>
#include <inttypes.h>
-#include <stdint.h>
#include "nvim/vim.h"
#include "nvim/ascii.h"
diff --git a/src/nvim/indent_c.c b/src/nvim/indent_c.c
index f8ce6200d7..3938da761b 100644
--- a/src/nvim/indent_c.c
+++ b/src/nvim/indent_c.c
@@ -3,7 +3,6 @@
#include <assert.h>
#include <inttypes.h>
-#include <stdint.h>
#include "nvim/vim.h"
#include "nvim/ascii.h"
diff --git a/src/nvim/log.c b/src/nvim/log.c
index a2f83d4d09..db36611933 100644
--- a/src/nvim/log.c
+++ b/src/nvim/log.c
@@ -12,7 +12,6 @@
#include <inttypes.h>
#include <stdarg.h>
#include <stdbool.h>
-#include <stdint.h>
#include <stdio.h>
#if !defined(WIN32)
# include <sys/time.h> // for gettimeofday()
diff --git a/src/nvim/msgpack_rpc/helpers.c b/src/nvim/msgpack_rpc/helpers.c
index 18b0bf3c16..a4a36e5ebf 100644
--- a/src/nvim/msgpack_rpc/helpers.c
+++ b/src/nvim/msgpack_rpc/helpers.c
@@ -1,7 +1,6 @@
// 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
-#include <stdint.h>
#include <stdbool.h>
#include <inttypes.h>
diff --git a/src/nvim/msgpack_rpc/server.c b/src/nvim/msgpack_rpc/server.c
index e5d80aea1d..6168f097a7 100644
--- a/src/nvim/msgpack_rpc/server.c
+++ b/src/nvim/msgpack_rpc/server.c
@@ -4,7 +4,6 @@
#include <assert.h>
#include <stdlib.h>
#include <string.h>
-#include <stdint.h>
#include <inttypes.h>
#include "nvim/msgpack_rpc/channel.h"
diff --git a/src/nvim/option.c b/src/nvim/option.c
index ae75644794..58398fa244 100644
--- a/src/nvim/option.c
+++ b/src/nvim/option.c
@@ -25,9 +25,7 @@
#include <assert.h>
#include <inttypes.h>
#include <stdbool.h>
-#include <stdint.h>
#include <string.h>
-#include <stdint.h>
#include <stdlib.h>
#include <limits.h>
diff --git a/src/nvim/regexp_nfa.c b/src/nvim/regexp_nfa.c
index c0129a00fb..63640e723e 100644
--- a/src/nvim/regexp_nfa.c
+++ b/src/nvim/regexp_nfa.c
@@ -10,7 +10,6 @@
#include <assert.h>
#include <inttypes.h>
#include <stdbool.h>
-#include <stdint.h>
#include <limits.h>
#include "nvim/ascii.h"
diff --git a/src/nvim/shada.c b/src/nvim/shada.c
index 4b34153164..2306da94c6 100644
--- a/src/nvim/shada.c
+++ b/src/nvim/shada.c
@@ -5,7 +5,6 @@
#include <stddef.h>
#include <stdbool.h>
#include <string.h>
-#include <stdint.h>
#include <inttypes.h>
#include <errno.h>
#include <assert.h>
diff --git a/src/nvim/spell.c b/src/nvim/spell.c
index 760ac2e6c1..0cde781fc3 100644
--- a/src/nvim/spell.c
+++ b/src/nvim/spell.c
@@ -72,7 +72,6 @@
#include <inttypes.h>
#include <limits.h>
#include <stdbool.h>
-#include <stdint.h>
#include <string.h>
#include <stdlib.h>
#include <wctype.h>
diff --git a/src/nvim/undo.c b/src/nvim/undo.c
index 8ec36a8fe3..035613c7fd 100644
--- a/src/nvim/undo.c
+++ b/src/nvim/undo.c
@@ -79,7 +79,6 @@
#include <inttypes.h>
#include <limits.h>
#include <stdbool.h>
-#include <stdint.h>
#include <string.h>
#include <fcntl.h>