Teach libc5 about realpath
authorEric Andersen <andersen@codepoet.org>
Thu, 2 Aug 2001 09:55:58 +0000 (09:55 -0000)
committerEric Andersen <andersen@codepoet.org>
Thu, 2 Aug 2001 09:55:58 +0000 (09:55 -0000)
 -Erik

umount.c
util-linux/umount.c

index 8565744f256926a94e42ea4d45a806fb35560519..74638d21c0899c4fa9c01be7ed8c7270a233786b 100644 (file)
--- a/umount.c
+++ b/umount.c
 #include <stdlib.h>
 #include "busybox.h"
 
+/* Teach libc5 about realpath -- it includes it but the 
+ * prototype is missing... */
+#if (__GLIBC__ <= 2) && (__GLIBC_MINOR__ < 1)
+extern char *realpath(const char *path, char *resolved_path);
+#endif
 
 static const int MNT_FORCE = 1;
 static const int MS_MGC_VAL = 0xc0ed0000; /* Magic number indicatng "new" flags */
index 8565744f256926a94e42ea4d45a806fb35560519..74638d21c0899c4fa9c01be7ed8c7270a233786b 100644 (file)
 #include <stdlib.h>
 #include "busybox.h"
 
+/* Teach libc5 about realpath -- it includes it but the 
+ * prototype is missing... */
+#if (__GLIBC__ <= 2) && (__GLIBC_MINOR__ < 1)
+extern char *realpath(const char *path, char *resolved_path);
+#endif
 
 static const int MNT_FORCE = 1;
 static const int MS_MGC_VAL = 0xc0ed0000; /* Magic number indicatng "new" flags */