mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-30 19:53:46 +00:00
14 lines
228 B
C
14 lines
228 B
C
/* tcdrain - wait for transmission of output */
|
|
|
|
#include <termios.h>
|
|
#include <sys/ioctl.h>
|
|
#include <machine/weakalias.h>
|
|
|
|
int
|
|
__libc_tcdrain (int fd)
|
|
{
|
|
return ioctl (fd, TCSBRK, 1);
|
|
}
|
|
weak_alias (__libc_tcdrain, tcdrain)
|
|
|