diff options
author | Ondřej Bílka <neleai@seznam.cz> | 2014-04-28 18:50:22 +0200 |
---|---|---|
committer | Ondřej Bílka <neleai@seznam.cz> | 2014-04-28 18:54:24 +0200 |
commit | fff763a512d574881c51dd273824e8457f413fc7 (patch) | |
tree | 055086f67de11517f561c516a916c24674a200a3 /manual/stdio.texi | |
parent | f7ed60c252627aec9c327ec870101c907b22070c (diff) | |
download | glibc-fff763a512d574881c51dd273824e8457f413fc7.tar.gz |
Fix types of stream hook functions in manual.
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 efdaaadf27..e40717034c 100644 --- a/manual/stdio.texi +++ b/manual/stdio.texi @@ -5305,26 +5305,26 @@ otherwise. @comment stdio.h @comment GNU -@deftp {Data Type} cookie_read_function +@deftp {Data Type} cookie_read_function_t This is the data type that the read function for a custom stream should have. If you declare the function as shown above, this is the type it will have. @end deftp @comment stdio.h @comment GNU -@deftp {Data Type} cookie_write_function +@deftp {Data Type} cookie_write_function_t The data type of the write function for a custom stream. @end deftp @comment stdio.h @comment GNU -@deftp {Data Type} cookie_seek_function +@deftp {Data Type} cookie_seek_function_t The data type of the seek function for a custom stream. @end deftp @comment stdio.h @comment GNU -@deftp {Data Type} cookie_close_function +@deftp {Data Type} cookie_close_function_t The data type of the close function for a custom stream. @end deftp |