From da51dc9cf202772f60bd2da975dbef257bd9237c Mon Sep 17 00:00:00 2001 From: Eliseo Martínez Date: Mon, 12 May 2014 02:25:17 +0200 Subject: Introduce nvim namespace: Move files. Move files from src/ to src/nvim/. - src/nvim/ becomes the new root dir for nvim executable sources. - src/libnvim/ is planned to become root dir of the neovim library. --- src/nvim/types.h | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 src/nvim/types.h (limited to 'src/nvim/types.h') diff --git a/src/nvim/types.h b/src/nvim/types.h new file mode 100644 index 0000000000..14ffd9fbb7 --- /dev/null +++ b/src/nvim/types.h @@ -0,0 +1,19 @@ +/* + * VIM - Vi IMproved by Bram Moolenaar + * + * Do ":help uganda" in Vim to read copying and usage conditions. + * Do ":help credits" in Vim to see a list of people who contributed. + */ + +#ifndef NEOVIM_TYPES_H +#define NEOVIM_TYPES_H + +#include + +/* + * Shorthand for unsigned variables. Many systems, but not all, have u_char + * already defined, so we use char_u to avoid trouble. + */ +typedef unsigned char char_u; + +#endif /* NEOVIM_TYPES_H */ -- cgit