--- rxvt-unicode/src/libptytty.h 2006/01/25 10:51:26 1.6 +++ rxvt-unicode/src/libptytty.h 2007/02/12 17:34:58 1.8 @@ -6,7 +6,7 @@ #ifdef __cplusplus -// c++ api +// C++ API struct ptytty { int pty; // pty file descriptor; connected to rxvt @@ -23,6 +23,7 @@ bool make_controlling_tty (); void set_utf8_mode (bool on); + static void sanitise_stdfd (); static void init (); static ptytty *create (); // create a new pty object @@ -42,7 +43,7 @@ #else -// c api +// C API typedef void *PTYTTY; @@ -56,6 +57,7 @@ int ptytty_make_controlling_tty (PTYTTY ptytty); void ptytty_set_utf8_mode (PTYTTY ptytty, int on); +void ptytty_sanitise_stdfd (); void ptytty_init (); PTYTTY ptytty_create ();