1 #include <sys/ioctl.h>
2 
3 int main()
4 {
5 #ifdef TIOCSIG
6    ioctl(9, TIOCSIG, 9);
7 #endif
8    return 0;
9 }
10