1
0
mirror of https://github.com/ioacademy-jikim/debugging synced 2025-06-08 08:26:14 +00:00
2015-12-13 22:34:58 +09:00

15 lines
231 B
C

/* Tests for TIOCSBRK per https://bugs.kde.org/show_bug.cgi?id=208217
*/
#include <sys/ioctl.h>
int main(int argc, const char *argv[])
{
#ifdef TIOCSBRK
ioctl(1, TIOCSBRK, 0);
ioctl(1, TIOCCBRK, 0);
#endif
return 0;
}