diff options
Diffstat (limited to 'sysdeps/unix/dirstream.h')
-rw-r--r-- | sysdeps/unix/dirstream.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/sysdeps/unix/dirstream.h b/sysdeps/unix/dirstream.h index 52d2337125..72fd67c722 100644 --- a/sysdeps/unix/dirstream.h +++ b/sysdeps/unix/dirstream.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1993, 1995, 1996 Free Software Foundation, Inc. +/* Copyright (C) 1993, 1995 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 @@ -20,7 +20,8 @@ Cambridge, MA 02139, USA. */ #define _DIRSTREAM_H 1 -#include <sys/types.h> +#define __need_size_t +#include <stddef.h> /* Directory stream type. @@ -36,7 +37,7 @@ struct __dirstream size_t __offset; /* Current offset into the block. */ size_t __size; /* Total valid data in the block. */ - off_t pos; /* Position of next entry to read. */ + struct dirent __entry; /* Returned by `readdir'. */ }; #define _DIR_dirfd(dirp) ((dirp)->__fd) |