From b2db50fd18c1026993505327a428560e3a231060 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Sat, 12 Aug 2000 04:48:19 +0000 Subject: [PATCH] Linux/Alpha egtdents implementation. --- sysdeps/unix/sysv/linux/alpha/getdents.c | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 sysdeps/unix/sysv/linux/alpha/getdents.c diff --git a/sysdeps/unix/sysv/linux/alpha/getdents.c b/sysdeps/unix/sysv/linux/alpha/getdents.c new file mode 100644 index 0000000000..6deb87e2e4 --- /dev/null +++ b/sysdeps/unix/sysv/linux/alpha/getdents.c @@ -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 +#undef __getdents64 +weak_alias(__getdents, __getdents64);