strace.1.in: format a reference to "open" syscall using bold font

* strace.1.in (.SH DESCRIPTION): Format a reference to "open" syscall
using bold font.
This commit is contained in:
Eugene Syromyatnikov 2018-05-20 22:22:13 +02:00 committed by Dmitry V. Levin
parent 48af7b3c25
commit 4531bae51a

View File

@ -171,7 +171,9 @@ This example shows the shell performing ">>xyzzy" output redirection:
.CW
open("xyzzy", O_WRONLY|O_APPEND|O_CREAT, 0666) = 3
.CE
Here, the third argument of open is decoded by breaking down the
Here, the third argument of
.B open
is decoded by breaking down the
flag argument into its three bitwise-OR constituents and printing the
mode value in octal by tradition. Where the traditional or native
usage differs from ANSI or POSIX, the latter forms are preferred.