/* Test whether a basic fclose invocation works. */ #include #include "../basic.h" int main(void) { if ( fclose(stdout) != 0 ) err(1, "fclose"); return 0; }