d_fileno alias for d_ino in dirent

this is nonstandard but since POSIX reserved d_ prefix in dirent.h we
might as well define it unconditionally. some programs depend on it.
diff --git a/include/dirent.h b/include/dirent.h
index 209285a..ca000bd 100644
--- a/include/dirent.h
+++ b/include/dirent.h
@@ -21,6 +21,8 @@
 	char d_name[1];
 };
 
+#define d_fileno d_ino
+
 int            closedir(DIR *);
 DIR           *fdopendir(int);
 DIR           *opendir(const char *);