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) | |
download | busybox-w32-298854f02963bd8e43dfeb7224d88cfeb0c932cb.tar.gz busybox-w32-298854f02963bd8e43dfeb7224d88cfeb0c932cb.tar.bz2 busybox-w32-298854f02963bd8e43dfeb7224d88cfeb0c932cb.zip |
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) | |||
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 | { |