diff options
author | 2012-05-22 23:43:40 +0000 | |
---|---|---|
committer | 2012-05-22 23:43:40 +0000 | |
commit | 488ef588cecdbfb8567f6f3aaf0e30adda343b28 (patch) | |
tree | d1d4059801beeeea3de676b5d7abb65e0f8d17df /lib/libc/stdio | |
parent | Flush the right networks, the dynamic ones not the static ones. (diff) | |
download | wireguard-openbsd-488ef588cecdbfb8567f6f3aaf0e30adda343b28.tar.xz wireguard-openbsd-488ef588cecdbfb8567f6f3aaf0e30adda343b28.zip |
Don't misleadingly suggest that fpos_t only needs to be a complex type
on non-UNIX systems: it's a complex type on Linux, and to be C99
compliant we'll probably need it to be a complex type too.
Diffstat (limited to 'lib/libc/stdio')
-rw-r--r-- | lib/libc/stdio/fseek.3 | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/lib/libc/stdio/fseek.3 b/lib/libc/stdio/fseek.3 index 21235cfd99a..665cfea0aac 100644 --- a/lib/libc/stdio/fseek.3 +++ b/lib/libc/stdio/fseek.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: fseek.3,v 1.13 2012/05/22 20:05:11 matthew Exp $ +.\" $OpenBSD: fseek.3,v 1.14 2012/05/22 23:43:40 matthew Exp $ .\" .\" Copyright (c) 1990, 1991, 1993 .\" The Regents of the University of California. All rights reserved. @@ -134,9 +134,7 @@ and setting and storing the current value of the file offset into or from the object referenced by .Fa pos . -On some -.Pq non- Ns Tn UNIX -systems an +On some systems an .Dq Fa fpos_t object may be a complex object and these routines may be the only way to portably reposition a text stream. |