Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit c5c67bc

Browse files
committed
At release 1.0.1. Scripts, Makefile, README: cosmetic changes and
streamlined procedure; tut.tex: fixes by Tim Peters; libposix.tex: added posix.fdopen; ext.tex: typos
1 parent 3ed23cc commit c5c67bc

4 files changed

Lines changed: 16 additions & 2 deletions

File tree

Doc/lib/libposix.tex

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,13 @@ \section{Built-in Module \sectcode{posix}}
8989
after a \code{fork()}.
9090
\end{funcdesc}
9191

92+
\begin{funcdesc}{fdopen}{fd\, mode}
93+
Return an open file object connected to the file descriptor \var{fd},
94+
open for reading and/or writing according to the \var{mode} string
95+
(which has the same meaning as the \var{mode} argument to the built-in
96+
\code{open()} function.
97+
\end{funcdesc}
98+
9299
\begin{funcdesc}{fork}{}
93100
Fork a child process. Return 0 in the child, the child's process id
94101
in the parent.

Doc/libposix.tex

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,13 @@ \section{Built-in Module \sectcode{posix}}
8989
after a \code{fork()}.
9090
\end{funcdesc}
9191

92+
\begin{funcdesc}{fdopen}{fd\, mode}
93+
Return an open file object connected to the file descriptor \var{fd},
94+
open for reading and/or writing according to the \var{mode} string
95+
(which has the same meaning as the \var{mode} argument to the built-in
96+
\code{open()} function.
97+
\end{funcdesc}
98+
9299
\begin{funcdesc}{fork}{}
93100
Fork a child process. Return 0 in the child, the child's process id
94101
in the parent.

Doc/tools/whichlibs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
#! /bin/sh
1+
#!/bin/sh
22
sed -n 's/^\\input{\(lib[a-zA-Z0-9_]*\)}.*/\1.tex/p' lib.tex

Doc/whichlibs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
#! /bin/sh
1+
#!/bin/sh
22
sed -n 's/^\\input{\(lib[a-zA-Z0-9_]*\)}.*/\1.tex/p' lib.tex

0 commit comments

Comments
 (0)