Skip to content

Commit

Permalink
2005-02-14 Andreas Schwab <schwab@suse.de>
Browse files Browse the repository at this point in the history
	* manual/filesys.texi (Random Access Directory): Fix type of file
	position value for telldir and seekdir.
	(Attribute Meanings): Fix typo.
  • Loading branch information
Roland McGrath committed Feb 14, 2005
1 parent 43c59a7 commit 6992a6b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions manual/filesys.texi
Original file line number Diff line number Diff line change
Expand Up @@ -531,15 +531,15 @@ 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.
@end deftypefun

@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;
Expand Down Expand Up @@ -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}.
Expand Down

0 comments on commit 6992a6b

Please sign in to comment.