diff options
author | Christopher Faylor <me@cgf.cx> | 2005-05-19 05:43:55 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2005-05-19 05:43:55 +0000 |
commit | 969d6089ced1f8d406b2abbafad3d8091fa121cc (patch) | |
tree | 3f7c3daeba96f1e69d22910cbfb0df9b55d0f5f8 /winsup/cygwin/fhandler.h | |
parent | bfcec8f1d80df02eff04e91415dcd3f81e7cace2 (diff) | |
download | cygnal-969d6089ced1f8d406b2abbafad3d8091fa121cc.tar.gz cygnal-969d6089ced1f8d406b2abbafad3d8091fa121cc.tar.bz2 cygnal-969d6089ced1f8d406b2abbafad3d8091fa121cc.zip |
* fhandler.h (fhandler_cygdrive::seekdir): Delete declaration.
(fhandler_cygdrive::seekdir): Delete.
* fhandler.h (fhandler_cygdrive::iscygdrive_root): Delete method.
(fhandler_cygdrive::telldir): Delete declaration.
* fhandler_disk_file.cc: Remove all uses of fhandler_cygdrive::iscygdrive_root.
(fhandler_disk_file::mkdir): New method.
(fhandler_disk_file::rmdir): Ditto.
(fhandler_cygdrive::telldir): Delete.
Diffstat (limited to 'winsup/cygwin/fhandler.h')
-rw-r--r-- | winsup/cygwin/fhandler.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/winsup/cygwin/fhandler.h b/winsup/cygwin/fhandler.h index b194993f8..c51144308 100644 --- a/winsup/cygwin/fhandler.h +++ b/winsup/cygwin/fhandler.h @@ -678,12 +678,9 @@ class fhandler_cygdrive: public fhandler_disk_file const char *pdrive; void set_drives (); public: - bool iscygdrive_root () { return !dev ().minor; } fhandler_cygdrive (); DIR *opendir (); struct dirent *readdir (DIR *); - _off64_t telldir (DIR *); - void seekdir (DIR *, _off64_t); void rewinddir (DIR *); int closedir (DIR *); int __stdcall fstat (struct __stat64 *buf) __attribute__ ((regparm (2))); |