diff options
author | Ondřej Bílka <neleai@seznam.cz> | 2013-08-30 18:09:30 +0200 |
---|---|---|
committer | Ondřej Bílka <neleai@seznam.cz> | 2013-08-30 18:10:31 +0200 |
commit | f24a6d086b96a65a73c68ecf349b03321cb03720 (patch) | |
tree | 823c4db1322b11c81ba5ce05d77adbf4afbdbbc8 /manual/filesys.texi | |
parent | 382466e04e347d3b3fa221897efb8f4cdc239105 (diff) | |
download | glibc-f24a6d086b96a65a73c68ecf349b03321cb03720.tar.gz glibc-f24a6d086b96a65a73c68ecf349b03321cb03720.tar.xz glibc-f24a6d086b96a65a73c68ecf349b03321cb03720.zip |
Fix then/than typos.
Diffstat (limited to 'manual/filesys.texi')
-rw-r--r-- | manual/filesys.texi | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/manual/filesys.texi b/manual/filesys.texi index 814c210a93..1cac45393d 100644 --- a/manual/filesys.texi +++ b/manual/filesys.texi @@ -1909,7 +1909,7 @@ replaces the normal implementation. @comment Unix98 @deftypefun int stat64 (const char *@var{filename}, struct stat64 *@var{buf}) This function is similar to @code{stat} but it is also able to work on -files larger then @math{2^31} bytes on 32-bit systems. To be able to do +files larger than @math{2^31} bytes on 32-bit systems. To be able to do this the result is stored in a variable of type @code{struct stat64} to which @var{buf} must point. @@ -1970,7 +1970,7 @@ replaces the normal implementation. @comment Unix98 @deftypefun int lstat64 (const char *@var{filename}, struct stat64 *@var{buf}) This function is similar to @code{lstat} but it is also able to work on -files larger then @math{2^31} bytes on 32-bit systems. To be able to do +files larger than @math{2^31} bytes on 32-bit systems. To be able to do this the result is stored in a variable of type @code{struct stat64} to which @var{buf} must point. @@ -3152,7 +3152,7 @@ interface transparently replaces the old interface. @deftypefun {FILE *} tmpfile64 (void) This function is similar to @code{tmpfile}, but the stream it returns a pointer to was opened using @code{tmpfile64}. Therefore this stream can -be used for files larger then @math{2^31} bytes on 32-bit machines. +be used for files larger than @math{2^31} bytes on 32-bit machines. Please note that the return type is still @code{FILE *}. There is no special @code{FILE} type for the LFS interface. |