github.com/Konstantin8105/c4go@v0.0.0-20240505174241-768bb1c65a51/tests/termios.c (about) 1 // termios checking 2 3 #include "tests.h" 4 #include <termios.h> 5 6 int main() 7 { 8 plan(0); 9 10 struct termios t; 11 12 (void)t; 13 14 done_testing(); 15 };