Files
neovim/src/nvim/api/tabpage.h
Pavel Platto 1de9287a02 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
2014-07-11 18:33:07 -04:00

12 lines
225 B
C

#ifndef NVIM_API_TABPAGE_H
#define NVIM_API_TABPAGE_H
#include <stdint.h>
#include "nvim/api/private/defs.h"
#ifdef INCLUDE_GENERATED_DECLARATIONS
# include "api/tabpage.h.generated.h"
#endif
#endif // NVIM_API_TABPAGE_H