diff options
author | Pavel Platto <hinidu@gmail.com> | 2014-07-09 09:55:40 +0300 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2014-07-11 18:33:07 -0400 |
commit | 1de9287a024801effa292b877492ab76210223b0 (patch) | |
tree | 4ad8b0aabc0ee8e53584ae1a1ddf5cf80a19873d /src/nvim/os/server.c | |
parent | 0868818d3ea403e99bed9cc34d0a2ea9b0aa02f2 (diff) | |
download | rneovim-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/os/server.c')
-rw-r--r-- | src/nvim/os/server.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/nvim/os/server.c b/src/nvim/os/server.c index 6e77c6b334..b90e7e318b 100644 --- a/src/nvim/os/server.c +++ b/src/nvim/os/server.c @@ -1,7 +1,6 @@ #include <stdlib.h> #include <string.h> #include <stdint.h> -#include <stdbool.h> #include <uv.h> |