diff options
author | Michael Reed <Pyrohh@users.noreply.github.com> | 2016-01-15 00:27:06 -0500 |
---|---|---|
committer | Michael Reed <Pyrohh@users.noreply.github.com> | 2016-01-15 00:27:06 -0500 |
commit | 0b23dec35e46a530b155189f17f6bba6ddc3aebe (patch) | |
tree | 07118b6756dfe5c34204112c228bb72b7f83aa11 /src/nvim/vim.h | |
parent | 24fbb2c866039d61107fa1f6a2efe86bb6951e55 (diff) | |
parent | 07265d221fbd3b4fd16440caab49c70d14370079 (diff) | |
download | rneovim-0b23dec35e46a530b155189f17f6bba6ddc3aebe.tar.gz rneovim-0b23dec35e46a530b155189f17f6bba6ddc3aebe.tar.bz2 rneovim-0b23dec35e46a530b155189f17f6bba6ddc3aebe.zip |
Merge pull request #4015 from Pyrohh/os_defs_more
[RFC] Misc. macro cleanup
Diffstat (limited to 'src/nvim/vim.h')
-rw-r--r-- | src/nvim/vim.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/nvim/vim.h b/src/nvim/vim.h index fa00d9efcf..98ef5eb4fd 100644 --- a/src/nvim/vim.h +++ b/src/nvim/vim.h @@ -27,9 +27,6 @@ Error: configure did not run properly.Check auto/config.log. # endif #endif -/* user ID of root is usually zero, but not for everybody */ -#define ROOT_UID 0 - /* Can't use "PACKAGE" here, conflicts with a Perl include file. */ #ifndef VIMPACKAGE @@ -232,15 +229,6 @@ enum { /* Size in bytes of the hash used in the undo file. */ #define UNDO_HASH_SIZE 32 -#ifdef HAVE_FCNTL_H -# include <fcntl.h> -#endif - - -#ifndef O_NOFOLLOW -# define O_NOFOLLOW 0 -#endif - /* * defines to avoid typecasts from (char_u *) to (char *) and back * (vim_strchr() and vim_strrchr() are now in alloc.c) |