CS代考计算机代写 /* Try to remove the root directory.

/* Try to remove the root directory.
This must fail. */

#include
#include “tests/lib.h”
#include “tests/main.h”

void
test_main (void)
{
CHECK (!remove (“/”), “remove \”/\” (must fail)”);
CHECK (create (“/a”, 243), “create \”/a\””);
}