diff options
author | Nicolas Boulenguez <nicolas.boulenguez@free.fr> | 2012-02-17 17:44:38 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2012-02-17 17:44:38 +0000 |
commit | cc6e48bc7c8e7a349147d5ce7683591175134076 (patch) | |
tree | c2df9fa3e01548be4bebf1736d1040ce8405765d /manual/llio.texi | |
parent | 6dd8f3dca0dacac90815a8776142bd28ba59513e (diff) | |
download | glibc-cc6e48bc7c8e7a349147d5ce7683591175134076.tar glibc-cc6e48bc7c8e7a349147d5ce7683591175134076.tar.gz glibc-cc6e48bc7c8e7a349147d5ce7683591175134076.tar.bz2 glibc-cc6e48bc7c8e7a349147d5ce7683591175134076.zip |
Fix various problems with @deftypefun lines.
Diffstat (limited to 'manual/llio.texi')
-rw-r--r-- | manual/llio.texi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/manual/llio.texi b/manual/llio.texi index 1d088d8ee2..8154de7416 100644 --- a/manual/llio.texi +++ b/manual/llio.texi @@ -1161,7 +1161,7 @@ These functions are declared in @file{sys/mman.h}. @comment sys/mman.h @comment POSIX -@deftypefun {void *} mmap (void *@var{address}, size_t @var{length},int @var{protect}, int @var{flags}, int @var{filedes}, off_t @var{offset}) +@deftypefun {void *} mmap (void *@var{address}, size_t @var{length}, int @var{protect}, int @var{flags}, int @var{filedes}, off_t @var{offset}) The @code{mmap} function creates a new mapping, connected to bytes (@var{offset}) to (@var{offset} + @var{length} - 1) in the file open on @@ -1280,7 +1280,7 @@ The file is on a filesystem that doesn't support mapping. @comment sys/mman.h @comment LFS -@deftypefun {void *} mmap64 (void *@var{address}, size_t @var{length},int @var{protect}, int @var{flags}, int @var{filedes}, off64_t @var{offset}) +@deftypefun {void *} mmap64 (void *@var{address}, size_t @var{length}, int @var{protect}, int @var{flags}, int @var{filedes}, off64_t @var{offset}) The @code{mmap64} function is equivalent to the @code{mmap} function but the @var{offset} parameter is of type @code{off64_t}. On 32-bit systems this allows the file associated with the @var{filedes} descriptor to be |