complex.7, environ.7, packet.7: srcfix

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
This commit is contained in:
Michael Kerrisk 2017-08-20 13:05:47 +02:00
parent 6cfabe200d
commit fa81452447
3 changed files with 1 additions and 4 deletions

View File

@ -12,7 +12,7 @@ complex \- basics of complex mathematics
.SH DESCRIPTION .SH DESCRIPTION
Complex numbers are numbers of the form z = a+b*i, where a and b are Complex numbers are numbers of the form z = a+b*i, where a and b are
real numbers and i = sqrt(\-1), so that i*i = \-1. real numbers and i = sqrt(\-1), so that i*i = \-1.
.br .PP
There are other ways to represent that number. There are other ways to represent that number.
The pair (a,b) of real The pair (a,b) of real
numbers may be viewed as a point in the plane, given by X- and numbers may be viewed as a point in the plane, given by X- and

View File

@ -37,7 +37,6 @@ environ \- user environment
.SH SYNOPSIS .SH SYNOPSIS
.nf .nf
.BI "extern char **" environ ; .BI "extern char **" environ ;
.br
.fi .fi
.SH DESCRIPTION .SH DESCRIPTION
The variable The variable

View File

@ -15,9 +15,7 @@ packet \- packet interface on device level
.SH SYNOPSIS .SH SYNOPSIS
.nf .nf
.B #include <sys/socket.h> .B #include <sys/socket.h>
.br
.B #include <linux/if_packet.h> .B #include <linux/if_packet.h>
.br
.B #include <net/ethernet.h> /* the L2 protocols */ .B #include <net/ethernet.h> /* the L2 protocols */
.PP .PP
.BI "packet_socket = socket(AF_PACKET, int " socket_type ", int "protocol ); .BI "packet_socket = socket(AF_PACKET, int " socket_type ", int "protocol );