projects
/
oweals
/
musl.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
switch to using trap number 31 for syscalls on sh
[oweals/musl.git]
/
src
/
unistd
/
isatty.c
1
#include <unistd.h>
2
#include <sys/ioctl.h>
3
#include "syscall.h"
4
5
int isatty(int fd)
6
{
7
struct winsize wsz;
8
return !__syscall(SYS_ioctl, fd, TIOCGWINSZ, &wsz);
9
}