// S : tags c $TAGS // S : expect --result valid // S : cc -o test.bc $CC_OPT $file // S : verify $V_OPT -o nofail:vfs test.bc #include #include #include #include #include #include int main() { assert( mkfifo( "pipe", 0644 ) == 0 ); int fd = open( "pipe", O_WRONLY ); assert( 0 ); return 0; }