diff options
author | Bram Moolenaar <Bram@vim.org> | 2007-02-27 15:48:28 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2007-02-27 15:48:28 +0000 |
commit | 311d982b6fbcad0cbbc7ca4358a0cd580b16fbc0 (patch) | |
tree | 9fac6a814447866636599c5b52c828f6348ae772 /src/vim.h | |
parent | 602eb74de6245dcad1ec77e919a7597789ef1c0e (diff) | |
download | vim-git-311d982b6fbcad0cbbc7ca4358a0cd580b16fbc0.tar.gz |
updated for version 7.0-202v7.0.202
Diffstat (limited to 'src/vim.h')
-rw-r--r-- | src/vim.h | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -50,6 +50,15 @@ # endif #endif +/* user ID of root is usually zero, but not for everybody */ +#ifdef __TANDEM +# define _TANDEM_SOURCE +# include <floss.h> +# define ROOT_UID 65535 +#else +# define ROOT_UID 0 +#endif + #ifdef __EMX__ /* hand-edited config.h for OS/2 with EMX */ # include "os_os2_cfg.h" #endif |