commit | d3e9d64b17517dcbe0af8b055c1d282e63ba6534 | [log] [tgz] |
---|---|---|
author | Rob Landley <rob@landley.net> | Mon Jan 08 03:25:47 2007 -0500 |
committer | Rob Landley <rob@landley.net> | Mon Jan 08 03:25:47 2007 -0500 |
tree | 240d03a866c79876ad2402ac5028774411bfe964 | |
parent | f3e452a35ab5fd1808be7a50652b54dc3222ba6e [diff] [blame] |
Add xaccess()
diff --git a/lib/functions.c b/lib/functions.c index e37887e..e476557 100644 --- a/lib/functions.c +++ b/lib/functions.c
@@ -140,6 +140,11 @@ error_exit("No %s", argv[0]); } +void xaccess(char *path, int flags) +{ + if (access(path, flags)) error_exit("Can't access '%s'\n", path); +} + // Die unless we can open/create a file, returning file descriptor. int xcreate(char *path, int flags, int mode) {