aboutsummaryrefslogtreecommitdiff
path: root/tmux.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2008-06-18 19:34:50 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2008-06-18 19:34:50 +0000
commit19b7946a85962f9458325637ff3559bca1286c6b (patch)
tree7fb0850ed1341a1f2d3ba69fc631c89bb906a426 /tmux.c
parent83a9f272d8b1d2ec08bc3d5b8fa04d5b8feeb349 (diff)
downloadrtmux-19b7946a85962f9458325637ff3559bca1286c6b.tar.gz
rtmux-19b7946a85962f9458325637ff3559bca1286c6b.tar.bz2
rtmux-19b7946a85962f9458325637ff3559bca1286c6b.zip
Start of Solaris port.
Diffstat (limited to 'tmux.c')
-rw-r--r--tmux.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/tmux.c b/tmux.c
index 9cf028f3..df9f2d2e 100644
--- a/tmux.c
+++ b/tmux.c
@@ -1,4 +1,4 @@
-/* $Id: tmux.c,v 1.58 2008-06-18 18:52:44 nicm Exp $ */
+/* $Id: tmux.c,v 1.59 2008-06-18 19:34:50 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -20,7 +20,6 @@
#include <sys/wait.h>
#include <errno.h>
-#include <paths.h>
#include <poll.h>
#include <pwd.h>
#include <signal.h>
@@ -29,6 +28,10 @@
#include <syslog.h>
#include <unistd.h>
+#ifndef NO_PATHS_H
+#include <paths.h>
+#endif
+
#include "tmux.h"
#ifdef DEBUG