repo.or.cz
/
AROS.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
intuition.library: remove not needed include
[AROS.git]
/
compiler
/
posixc
/
tcgetattr.c
blob
0d13ff6ac1c71fc73fcd0c48a64e4f0626975aaa
1
/*
2
Copyright © 1995-2014, The AROS Development Team. All rights reserved.
3
$Id$
4
*/
5
6
#include <termios.h>
7
8
/* FIXME: add autodoc */
9
int
tcgetattr
(
int
__fd
,
struct
termios
*
__termios_p
)
10
{
11
/* TODO: Implement tcgetattr() */
12
return
0
;
13
}