summaryrefslogtreecommitdiffstats
path: root/osdep-unknown.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2009-04-29 23:07:35 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2009-04-29 23:07:35 +0000
commit91241f1457d2391f2885761d5df423eb7a4d893e (patch)
treeae5ed8c06fed1f1809c0a9d26a4a1f18f2287b8c /osdep-unknown.c
parentce989a91d1c713300503b4631f29fbf456561701 (diff)
Apply the make magic wand to pick an osdep-*.c file rather than using ifdefs.
Diffstat (limited to 'osdep-unknown.c')
-rw-r--r--osdep-unknown.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/osdep-unknown.c b/osdep-unknown.c
index 5370af94..d59a3b53 100644
--- a/osdep-unknown.c
+++ b/osdep-unknown.c
@@ -1,4 +1,4 @@
-/* $Id: osdep-unknown.c,v 1.4 2009-03-31 21:22:10 nicm Exp $ */
+/* $Id: osdep-unknown.c,v 1.5 2009-04-29 23:07:35 nicm Exp $ */
/*
* Copyright (c) 2009 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -16,9 +16,6 @@
* OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
-#if !defined(__OpenBSD__) && !defined(__FreeBSD__) && !defined(__linux__) && \
- !defined(__APPLE__) && !defined(__NetBSD__)
-
#include <sys/types.h>
#include "tmux.h"
@@ -28,5 +25,3 @@ osdep_get_name(unused int fd, unused char *tty)
{
return (NULL);
}
-
-#endif