Disable this for AIX

This commit is contained in:
Love Hornquist Astrand
2009-10-11 18:42:59 -07:00
parent 279d62834d
commit 39d4a77d6a

View File

@@ -93,6 +93,10 @@ caught_signal(int signo)
static void
open_pty(void)
{
#ifdef _AIX
printf("implement open_pty\n");
exit(77);
#endif
#if defined(HAVE_OPENPTY) || defined(__linux) || defined(__osf__) /* XXX */
if(openpty(&master, &slave, line, 0, 0) == 0)
return;