aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/api
diff options
context:
space:
mode:
authorPavel Platto <hinidu@gmail.com>2014-07-09 09:55:40 +0300
committerJustin M. Keyes <justinkz@gmail.com>2014-07-11 18:33:07 -0400
commit1de9287a024801effa292b877492ab76210223b0 (patch)
tree4ad8b0aabc0ee8e53584ae1a1ddf5cf80a19873d /src/nvim/api
parent0868818d3ea403e99bed9cc34d0a2ea9b0aa02f2 (diff)
downloadrneovim-1de9287a024801effa292b877492ab76210223b0.tar.gz
rneovim-1de9287a024801effa292b877492ab76210223b0.tar.bz2
rneovim-1de9287a024801effa292b877492ab76210223b0.zip
Remove stdbool.h from files which don't need it
Done by manual inspection of the output of this script: grep -r -l -w "bool\|true\|false" * | grep 'c$\|h$' > has_bool grep -r -l "stdbool.h" * | grep 'c$\|h$' > has_include grep -F -x -v -f has_bool has_include
Diffstat (limited to 'src/nvim/api')
-rw-r--r--src/nvim/api/buffer.h1
-rw-r--r--src/nvim/api/tabpage.h1
-rw-r--r--src/nvim/api/vim.h1
-rw-r--r--src/nvim/api/window.h1
4 files changed, 0 insertions, 4 deletions
diff --git a/src/nvim/api/buffer.h b/src/nvim/api/buffer.h
index 0262ea000e..9aa898f7da 100644
--- a/src/nvim/api/buffer.h
+++ b/src/nvim/api/buffer.h
@@ -2,7 +2,6 @@
#define NVIM_API_BUFFER_H
#include <stdint.h>
-#include <stdbool.h>
#include "nvim/api/private/defs.h"
diff --git a/src/nvim/api/tabpage.h b/src/nvim/api/tabpage.h
index b24a9795e5..a822844af9 100644
--- a/src/nvim/api/tabpage.h
+++ b/src/nvim/api/tabpage.h
@@ -2,7 +2,6 @@
#define NVIM_API_TABPAGE_H
#include <stdint.h>
-#include <stdbool.h>
#include "nvim/api/private/defs.h"
diff --git a/src/nvim/api/vim.h b/src/nvim/api/vim.h
index f15edb8548..5e0b35b562 100644
--- a/src/nvim/api/vim.h
+++ b/src/nvim/api/vim.h
@@ -2,7 +2,6 @@
#define NVIM_API_VIM_H
#include <stdint.h>
-#include <stdbool.h>
#include "nvim/api/private/defs.h"
diff --git a/src/nvim/api/window.h b/src/nvim/api/window.h
index 3a8cde18e2..632b160e62 100644
--- a/src/nvim/api/window.h
+++ b/src/nvim/api/window.h
@@ -2,7 +2,6 @@
#define NVIM_API_WINDOW_H
#include <stdint.h>
-#include <stdbool.h>
#include "nvim/api/private/defs.h"