Linux/Alpha egtdents implementation.

This commit is contained in:
Ulrich Drepper 2000-08-12 04:48:19 +00:00
parent 2489c7f179
commit b2db50fd18

View File

@ -0,0 +1,6 @@
#define DIRENT_SET_DP_INO(dp, value) \
do { (dp)->d_ino = (value); (dp)->__pad = 0; } while (0)
#define __getdents64 __no___getdents64_decl
#include <sysdeps/unix/sysv/linux/getdents.c>
#undef __getdents64
weak_alias(__getdents, __getdents64);