blob: 074fc3a250fd67b4abf9368c6fdebf6e3f8d4150 [file] [log] [blame]
Elliott Hughes39bac052017-05-25 16:56:11 -07001#include "tests.h"
2
3#include <sys/stat.h>
4#include <unistd.h>
5
6void
7skip_if_unavailable(const char *const path)
8{
9 struct stat st;
10
11 if (stat(path, &st))
12 perror_msg_and_skip("stat: %s", path);
13}