[Libsysio-commit] HEAD: libsysio/include cplant-yod.h
Brought to you by:
lward
From: Ruth K. <rk...@us...> - 2003-10-20 17:07:54
|
Update of /cvsroot/libsysio/libsysio/include In directory sc8-pr-cvs1:/tmp/cvs-serv8240 Modified Files: cplant-yod.h Log Message: merge cplant changes Index: cplant-yod.h =================================================================== RCS file: /cvsroot/libsysio/libsysio/include/cplant-yod.h,v retrieving revision 1.2 retrieving revision 1.3 diff -u -w -b -B -p -r1.2 -r1.3 --- cplant-yod.h 14 Aug 2003 18:39:33 -0000 1.2 +++ cplant-yod.h 20 Oct 2003 16:34:48 -0000 1.3 @@ -48,14 +48,17 @@ extern int chmod_yod(const char* path, m extern int chown_yod(const char* path, uid_t, gid_t); extern int stat_yod(const char *path, struct stat *sbuf); extern int fstat_yod(int fd, struct stat *buf); +#ifdef _HAVE_STATVFS extern int statfs_yod(const char *path, struct statfs *sbuf); extern int fstatfs_yod(int fd, struct statfs *buf); +#endif extern int mkdir_yod(const char *path, mode_t mode); extern int rmdir_yod(const char *path); extern int getdirentries_yod(int fd, char *buf, size_t nbytes, loff_t *basep); extern int link_yod(const char *path1, const char *path2); extern int unlink_yod(const char *path); extern int symlink_yod(const char *path1, const char *path2 ); +extern int rename_yod( const char *path1, const char *path2 ); extern int open_yod(const char *fname, int flags, mode_t mode); extern int close_yod(int); extern ssize_t write_yod(int fd, const void *buff, size_t nbytes); |