diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2009-08-26 09:10:47 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2009-08-26 09:10:47 +0000 |
commit | 1a5aba47c742844fc17526ac27d5a162250f7fec (patch) | |
tree | 572e25ce708ae4bc944207df35de7d7a7e7d1967 /compat.h | |
parent | 6b4ed722b1d77342fd4faa0c33880ef1d1d2305f (diff) | |
download | rtmux-1a5aba47c742844fc17526ac27d5a162250f7fec.tar.gz rtmux-1a5aba47c742844fc17526ac27d5a162250f7fec.tar.bz2 rtmux-1a5aba47c742844fc17526ac27d5a162250f7fec.zip |
ttydefchars is a fucking horlicks. Happily we only need it in one file, move it
in there to avoid multiple inclusion issues.
Perhaps it would be better to pass NULL through to forkpty in the default
case...
Diffstat (limited to 'compat.h')
-rw-r--r-- | compat.h | 14 |
1 files changed, 1 insertions, 13 deletions
@@ -1,4 +1,4 @@ -/* $Id: compat.h,v 1.14 2009-08-20 12:49:18 nicm Exp $ */ +/* $Id: compat.h,v 1.15 2009-08-26 09:10:47 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -87,18 +87,6 @@ typedef uint64_t u_int64_t; #include "compat/vis.h" #endif -#ifdef HAVE_TTYDEFAULTS_H -#ifdef HAVE_TTYDEFCHARS -#define TTYDEFCHARS -#endif -#include <sys/ttydefaults.h> -#else -#ifndef OXTABS -#define OXTABS 0 -#endif -#include "compat/ttydefaults.h" -#endif - #ifndef HAVE_IMSG #include "compat/imsg.h" #endif |