repo.or.cz
/
minix3.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
. pci driver now returns devices, even when they have been pci_reserve()d
[minix3.git]
/
lib
/
posix
/
_tcdrain.c
blob
f708527ae9d2f59e601750a239882504953bf41e
1
/*
2
posix/_tcdrain.c
3
4
Created: July 26, 1994 by Philip Homburg
5
*/
6
7
#define tcdrain _tcdrain
8
#define ioctl _ioctl
9
#include <termios.h>
10
#include <sys/ioctl.h>
11
12
int
tcdrain
(
fd
)
13
int
fd
;
14
{
15
return
(
ioctl
(
fd
,
TCDRAIN
, (
void
*)
0
));
16
}