don't use a sgttyb struct

This commit is contained in:
ceriel 1987-01-29 13:01:28 +00:00
parent ef85335f8f
commit bc8229b952

View file

@ -1,8 +1,10 @@
#include <sgtty.h>
isatty(f)
{
struct sgttyb ttyb;
char buf[128];
/* not a sgttyb struct; it might not be large enough;
I know for a fact that it is'nt large enough on PC/IX,
where gtty is an ioctl(..., TCGETA, ...)
*/
if (gtty(f, &ttyb) < 0) return 0;
return 1;