/* Open a file. */ #include #include "tests/lib.h" #include "tests/main.h" void test_main (void) { int handle = open ("sample.txt"); if (handle < 2) fail ("open() returned %d", handle); }