Removed trailing white space at end of lines

This commit is contained in:
Michael Kerrisk 2009-07-25 08:51:28 +02:00
parent 0f846d3c92
commit e80aa4d865
3 changed files with 4 additions and 4 deletions

View File

@ -197,8 +197,8 @@ complex.7
Reimar Döffinger
Fix type used in example code
man complex (from release 3.18) contains the following code:
complex z = cexp(I * pi);
Reading the C99 standard, "complex" is not a valid type,
complex z = cexp(I * pi);
Reading the C99 standard, "complex" is not a valid type,
and several compilers (Intel ICC, ARM RVCT) will refuse to compile.
It should be
double complex z = cexp(I * pi); instead.

View File

@ -58,7 +58,7 @@ is zero,
.BR daemon ()
changes the process's current working directory
to the root directory ("/");
otherwise,
otherwise,
.PP
If
.I noclose

View File

@ -175,7 +175,7 @@ and are not widely available on other systems.
.SH NOTES
There is no file descriptor associated with the file stream
returned by these functions
(i.e.,
(i.e.,
.BR fileno (3)
will return an error if called on the returned stream).
.SH BUGS