Add diclaimer of copyright to _osname() manual page.
[unix-history] / usr.bin / vi / clib / fchmod.c
CommitLineData
1e64b3ba
JH
1#include <stdio.h>
2#include <unistd.h>
3#include <compat.h>
4
5int
6fchmod(fd, mode)
7 int fd;
8 u_int mode;
9{
10 char *tty;
11
12 /* Find the tty. */
13 if ((tty = ttyname(fd)) == NULL)
14 return (-1);
15
16 return (chmod(tty, mode));
17}