aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/os_unix.c
diff options
context:
space:
mode:
authorEliseo Martínez <eliseomarmol@gmail.com>2014-05-12 11:59:22 +0200
committerEliseo Martínez <eliseomarmol@gmail.com>2014-05-15 20:46:01 +0200
commit409cc138f2de121288de3ffb930354b94af5edcd (patch)
tree31b10a63931ce99eb97dda40b286defc3b140606 /src/nvim/os_unix.c
parente731a5edf879cd0b5eb2a2035f78e2b44fbe75f5 (diff)
downloadrneovim-409cc138f2de121288de3ffb930354b94af5edcd.tar.gz
rneovim-409cc138f2de121288de3ffb930354b94af5edcd.tar.bz2
rneovim-409cc138f2de121288de3ffb930354b94af5edcd.zip
Introduce nvim namespace: Fix project-local includes.
Prepend 'nvim/' in all project-local (non-system) includes.
Diffstat (limited to 'src/nvim/os_unix.c')
-rw-r--r--src/nvim/os_unix.c56
1 files changed, 28 insertions, 28 deletions
diff --git a/src/nvim/os_unix.c b/src/nvim/os_unix.c
index 93cd0272a8..351f9a5837 100644
--- a/src/nvim/os_unix.c
+++ b/src/nvim/os_unix.c
@@ -27,34 +27,34 @@
#include <string.h>
-#include "vim.h"
-#include "os_unix.h"
-#include "buffer.h"
-#include "charset.h"
-#include "eval.h"
-#include "ex_cmds.h"
-#include "fileio.h"
-#include "getchar.h"
-#include "main.h"
-#include "mbyte.h"
-#include "memline.h"
-#include "memory.h"
-#include "message.h"
-#include "misc1.h"
-#include "misc2.h"
-#include "garray.h"
-#include "path.h"
-#include "screen.h"
-#include "syntax.h"
-#include "term.h"
-#include "ui.h"
-#include "os/os.h"
-#include "os/time.h"
-#include "os/event.h"
-#include "os/input.h"
-#include "os/shell.h"
-#include "os/signal.h"
-#include "os/job.h"
+#include "nvim/vim.h"
+#include "nvim/os_unix.h"
+#include "nvim/buffer.h"
+#include "nvim/charset.h"
+#include "nvim/eval.h"
+#include "nvim/ex_cmds.h"
+#include "nvim/fileio.h"
+#include "nvim/getchar.h"
+#include "nvim/main.h"
+#include "nvim/mbyte.h"
+#include "nvim/memline.h"
+#include "nvim/memory.h"
+#include "nvim/message.h"
+#include "nvim/misc1.h"
+#include "nvim/misc2.h"
+#include "nvim/garray.h"
+#include "nvim/path.h"
+#include "nvim/screen.h"
+#include "nvim/syntax.h"
+#include "nvim/term.h"
+#include "nvim/ui.h"
+#include "nvim/os/os.h"
+#include "nvim/os/time.h"
+#include "nvim/os/event.h"
+#include "nvim/os/input.h"
+#include "nvim/os/shell.h"
+#include "nvim/os/signal.h"
+#include "nvim/os/job.h"
#if defined(HAVE_SYS_IOCTL_H)
# include <sys/ioctl.h>