aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/os_unix.c
diff options
context:
space:
mode:
authorMichael Reed <Pyrohh@users.noreply.github.com>2016-01-15 00:27:06 -0500
committerMichael Reed <Pyrohh@users.noreply.github.com>2016-01-15 00:27:06 -0500
commit0b23dec35e46a530b155189f17f6bba6ddc3aebe (patch)
tree07118b6756dfe5c34204112c228bb72b7f83aa11 /src/nvim/os_unix.c
parent24fbb2c866039d61107fa1f6a2efe86bb6951e55 (diff)
parent07265d221fbd3b4fd16440caab49c70d14370079 (diff)
downloadrneovim-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/os_unix.c')
-rw-r--r--src/nvim/os_unix.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/nvim/os_unix.c b/src/nvim/os_unix.c
index 6c7cb3bba7..cb9a58cc77 100644
--- a/src/nvim/os_unix.c
+++ b/src/nvim/os_unix.c
@@ -175,13 +175,6 @@ void mch_exit(int r)
exit(r);
}
-#ifndef SEEK_SET
-# define SEEK_SET 0
-#endif
-#ifndef SEEK_END
-# define SEEK_END 2
-#endif
-
#define SHELL_SPECIAL (char_u *)"\t \"&'$;<>()\\|"
/// Does wildcard pattern matching using the shell.