X-Git-Url: http://git.tuebingen.mpg.de/?p=osl.git;a=blobdiff_plain;f=fd.h;h=45d08b3a3e327c17e2050cbee7382de7fabee75e;hp=c660babb31547ca821013ce4dbbd557641bea36a;hb=a00170132c28eeea61033d820c22e8d48d35a0fd;hpb=68aa66b6f051083b8f9fe9cf65b0a20fed4363f9 diff --git a/fd.h b/fd.h index c660bab..45d08b3 100644 --- a/fd.h +++ b/fd.h @@ -8,7 +8,6 @@ int osl_open(const char *path, int flags, mode_t mode); int para_opendir(const char *dirname, DIR **dir, int *cwd); -int para_fchdir(int fd); int mmap_full_file(const char *filename, int open_mode, void **map, size_t *size, int *fd_ptr); int osl_munmap(void *start, size_t length); @@ -47,3 +46,10 @@ _static_inline_ int osl_rename(const char *old_path, const char *new_path) return -ERRNO_TO_ERROR(errno); return 1; } + +_static_inline_ int osl_stat(const char *path, struct stat *buf) +{ + if (stat(path, buf) >= 0) + return 1; + return -ERRNO_TO_ERROR(errno); +}