summaryrefslogtreecommitdiff
path: root/manual
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2005-02-14 22:33:41 +0000
committerRoland McGrath <roland@gnu.org>2005-02-14 22:33:41 +0000
commit6992a6b21e8e917063180eb3740dda04d48b9694 (patch)
tree51e0ff3d409e2c51707cb1537d6f599177966073 /manual
parent43c59a705b67a3078cb1d8fd8ff6ce00ea9bdeee (diff)
2005-02-14 Andreas Schwab <schwab@suse.de>
* manual/filesys.texi (Random Access Directory): Fix type of file position value for telldir and seekdir. (Attribute Meanings): Fix typo.
Diffstat (limited to 'manual')
-rw-r--r--manual/filesys.texi6
1 files changed, 3 insertions, 3 deletions
diff --git a/manual/filesys.texi b/manual/filesys.texi
index 70889c2f85..084d18cd8c 100644
--- a/manual/filesys.texi
+++ b/manual/filesys.texi
@@ -531,7 +531,7 @@ added or removed since you last called @code{opendir} or
@comment dirent.h
@comment BSD
-@deftypefun off_t telldir (DIR *@var{dirstream})
+@deftypefun long int telldir (DIR *@var{dirstream})
The @code{telldir} function returns the file position of the directory
stream @var{dirstream}. You can use this value with @code{seekdir} to
restore the directory stream to that position.
@@ -539,7 +539,7 @@ restore the directory stream to that position.
@comment dirent.h
@comment BSD
-@deftypefun void seekdir (DIR *@var{dirstream}, off_t @var{pos})
+@deftypefun void seekdir (DIR *@var{dirstream}, long int @var{pos})
The @code{seekdir} function sets the file position of the directory
stream @var{dirstream} to @var{pos}. The value @var{pos} must be the
result of a previous call to @code{telldir} on this particular stream;
@@ -1740,7 +1740,7 @@ is transparently replaced by @code{ino64_t}.
@deftp {Data Type} ino64_t
This is an arithmetic data type used to represent file serial numbers
for the use in LFS. In the GNU system, this type is equivalent to
-@code{unsigned long longint}.
+@code{unsigned long long int}.
When compiling with @code{_FILE_OFFSET_BITS == 64} this type is
available under the name @code{ino_t}.