Finish off the libc5 porting effort. Everything now works with libc5

except for md5sum, which uses the GNU libc addition getline().
 -Erik
This commit is contained in:
Eric Andersen
2000-06-19 20:03:48 +00:00
parent bb245ba0c2
commit bd4a75f6c8
6 changed files with 15 additions and 6 deletions

View File

@@ -797,6 +797,6 @@ goodbye:
}
mark_good_blocks();
write_tables();
exit( 0);
return( 0);
}

View File

@@ -24,12 +24,12 @@
#include "internal.h"
#include <stdio.h>
//#include <sys/mount.h>
#include <mntent.h>
#include <errno.h>
#include <linux/unistd.h>
//#include <sys/mount.h>
/* Include our own version of sys/mount.h, since libc5 doesn't
* know about umount2 */
static _syscall1(int, umount, const char *, special_file);