diff options
author | Ulrich Drepper <drepper@redhat.com> | 2002-06-30 04:04:20 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2002-06-30 04:04:20 +0000 |
commit | 95fdc6a0f61a389e92a6b84250c2286b4808b626 (patch) | |
tree | 54afe4d2de7ab4aeb9a6d0943ab90d8ddc794c0a /manual/stdio.texi | |
parent | 8b8cc76fa47fe0819e5e52e29c6674e799df646e (diff) | |
download | glibc-95fdc6a0f61a389e92a6b84250c2286b4808b626.zip glibc-95fdc6a0f61a389e92a6b84250c2286b4808b626.tar.gz glibc-95fdc6a0f61a389e92a6b84250c2286b4808b626.tar.bz2 |
Update.
2002-06-19 Steven Munroe <sjmunroe@vnet.ibm.com>
* Examples/ex9.c (main): Use list of children and join them.
(thread): Do not call exit.
Diffstat (limited to 'manual/stdio.texi')
-rw-r--r-- | manual/stdio.texi | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/manual/stdio.texi b/manual/stdio.texi index 05ecab0..39fd4fb 100644 --- a/manual/stdio.texi +++ b/manual/stdio.texi @@ -497,7 +497,7 @@ sometimes not possible): @smallexample FILE *fp; @{ - ... + @dots{} flockfile (fp); fputs ("This is test number ", fp); fprintf (fp, "%d\n", test); @@ -2450,7 +2450,7 @@ For example: @smallexample #define myprintf(a, b, c, d, e, rest...) \ - printf (mytemplate , ## rest...) + printf (mytemplate , ## rest) @end smallexample @noindent @@ -5295,7 +5295,7 @@ the following in the environment before calling the @code{fmtmsg} function the first time: @smallexample -MSGVERB=@var{keyword}[:@var{keyword}[:...]] +MSGVERB=@var{keyword}[:@var{keyword}[:@dots{}]] @end smallexample Valid @var{keyword}s are @code{label}, @code{severity}, @code{text}, @@ -5314,7 +5314,7 @@ described above are available. Any other numeric value would make If the user puts @code{SEV_LEVEL} with a format like @smallexample -SEV_LEVEL=[@var{description}[:@var{description}[:...]]] +SEV_LEVEL=[@var{description}[:@var{description}[:@dots{}]]] @end smallexample @noindent |