Files
neovim/src/nvim/move.h
Pavel Platto 0868818d3e Include stdbool.h in some files which use 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_include has_bool
2014-07-11 18:33:07 -04:00

10 lines
162 B
C

#ifndef NVIM_MOVE_H
#define NVIM_MOVE_H
#include <stdbool.h>
#ifdef INCLUDE_GENERATED_DECLARATIONS
# include "move.h.generated.h"
#endif
#endif // NVIM_MOVE_H