diff options
Diffstat (limited to 'sysdeps/unix/sysv/linux/getdirentries.c')
-rw-r--r-- | sysdeps/unix/sysv/linux/getdirentries.c | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/sysdeps/unix/sysv/linux/getdirentries.c b/sysdeps/unix/sysv/linux/getdirentries.c index cb81ad763b..b0ad4997ad 100644 --- a/sysdeps/unix/sysv/linux/getdirentries.c +++ b/sysdeps/unix/sysv/linux/getdirentries.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993, 95, 96, 97, 98, 99 Free Software Foundation, Inc. +/* Copyright (C) 1993, 95, 96, 97, 98, 99, 2000 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -19,20 +19,21 @@ #include <dirent.h> #include <unistd.h> -#ifdef GETDENTS64 -# define getdirentries getdirentries64 -# define __getdents __getdents64 +#ifndef GETDIRENTRIES +# define GETDIRENTRIES getdirentries +# define __GETDENTS __getdents +#else # define off_t off64_t # define __lseek __lseek64 #endif ssize_t -getdirentries (int fd, char *buf, size_t nbytes, off_t *basep) +GETDIRENTRIES (int fd, char *buf, size_t nbytes, off_t *basep) { off_t base = __lseek (fd, (off_t) 0, SEEK_CUR); ssize_t result; - result = __getdents (fd, buf, nbytes); + result = __GETDENTS (fd, buf, nbytes); if (result != -1) *basep = base; |