Path: tut!enea!mcvax!botter!ast
From: ast@cs.vu.nl (Andy Tanenbaum)
Newsgroups: comp.os.minix
Subject: lib/stty.c
Message-ID: <1713@botter.cs.vu.nl>
Date: 5 Oct 87 22:59:39 GMT
Reply-To: ast@cs.vu.nl (Andy Tanenbaum)
Distribution: world
Organization: VU Informatica, Amsterdam
Lines: 8

#include <sgtty.h>

stty(fd, argp)
int fd;
char *argp;
{
  ioctl(fd, TIOCSETP, argp);
}
