diff options
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) | |||
145 | return mp; | 145 | return mp; |
146 | } | 146 | } |
147 | 147 | ||
148 | /* Don't bother to clean up, since exit() does that | ||
149 | * automagically, so we can save a few bytes */ | ||
150 | #if 0 | ||
148 | void mtab_free(void) | 151 | void mtab_free(void) |
149 | { | 152 | { |
150 | struct _mtab_entry_t *this, *next; | 153 | struct _mtab_entry_t *this, *next; |
@@ -160,6 +163,7 @@ void mtab_free(void) | |||
160 | this = next; | 163 | this = next; |
161 | } | 164 | } |
162 | } | 165 | } |
166 | #endif | ||
163 | 167 | ||
164 | static int do_umount(const char *name, int useMtab) | 168 | static int do_umount(const char *name, int useMtab) |
165 | { | 169 | { |