diff options
author | Erik Andersen <andersen@codepoet.org> | 2000-03-23 01:09:18 +0000 |
---|---|---|
committer | Erik Andersen <andersen@codepoet.org> | 2000-03-23 01:09:18 +0000 |
commit | 298854f02963bd8e43dfeb7224d88cfeb0c932cb (patch) | |
tree | 7a2fbb55e55f980edddb0d627c3f3e79c8f793b0 /umount.c | |
parent | ec5bd90916b6e815a36c14ac04d1b78e3e487400 (diff) |
My latest ramblings.
-Erik
Diffstat (limited to 'umount.c')
-rw-r--r-- | umount.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -145,6 +145,9 @@ char *mtab_next(void **iter) return mp; } +/* Don't bother to clean up, since exit() does that + * automagically, so we can save a few bytes */ +#if 0 void mtab_free(void) { struct _mtab_entry_t *this, *next; @@ -160,6 +163,7 @@ void mtab_free(void) this = next; } } +#endif static int do_umount(const char *name, int useMtab) { |