1 2 3 4 5 6 7 8 9 10 11
/* Tries to create a file with the null pointer as its name. The process must be terminated with exit code -1. */ #include "tests/lib.h" #include "tests/main.h" void test_main (void) { msg ("create(NULL): %d", create (NULL, 0)); }