ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/cebix/BasiliskII/src/BeOS/extfs_beos.cpp
(Generate patch)

Comparing BasiliskII/src/BeOS/extfs_beos.cpp (file contents):
Revision 1.6 by cebix, 1999-11-01T16:24:14Z vs.
Revision 1.7 by cebix, 1999-11-08T17:00:12Z

# Line 455 | Line 455 | size_t extfs_write(int fd, void *buffer,
455          }
456          return actual;
457   }
458 +
459 +
460 + /*
461 + *  Remove file/directory, returns false on error (and sets errno)
462 + */
463 +
464 + bool extfs_remove(const char *path)
465 + {
466 +        if (remove(path) < 0) {
467 +                if (errno == EISDIR)
468 +                        return rmdir(path) == 0;
469 +                else
470 +                        return false;
471 +        }
472 +        return true;
473 + }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines