repo.or.cz
/
newlib-cygwin.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Cygwin: access: Fix X_OK behaviour for backup operators and admins
[newlib-cygwin.git]
/
newlib
/
libc
/
sys
/
sysvi386
/
tcsetattr.c
blob
1df92b28143bcbda17b7002c275069304cd9dd36
1
#include <sys/termios.h>
2
3
int
4
tcsetattr
(
int
fd
,
int
opts
,
const struct
termios
*
tp
) {
5
return
_ioctl
(
fd
,
opts
,
tp
);
6
}
7