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/ctype.texi | |
parent | Update. (diff) | |
download | glibc-95fdc6a0f61a389e92a6b84250c2286b4808b626.tar.gz glibc-95fdc6a0f61a389e92a6b84250c2286b4808b626.tar.bz2 glibc-95fdc6a0f61a389e92a6b84250c2286b4808b626.zip |
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/ctype.texi')
-rw-r--r-- | manual/ctype.texi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manual/ctype.texi b/manual/ctype.texi index 593f7f3a0b..1117363a4b 100644 --- a/manual/ctype.texi +++ b/manual/ctype.texi @@ -625,7 +625,7 @@ is_in_class (int c, const char *class) return isalpha (c); if (strcmp (class, "cntrl") == 0) return iscntrl (c); - ... + @dots{} return 0; @} @end smallexample |