mirror of git://sourceware.org/git/glibc.git
Fix types of stream hook functions in manual.
This commit is contained in:
parent
f7ed60c252
commit
fff763a512
|
@ -1,5 +1,8 @@
|
||||||
2014-04-28 Ondřej Bílka <neleai@seznam.cz>
|
2014-04-28 Ondřej Bílka <neleai@seznam.cz>
|
||||||
|
|
||||||
|
[BZ #16754]
|
||||||
|
* manual/stdio.texi (Hook functions): Fix types of stream hook
|
||||||
|
functions.
|
||||||
[BZ #16854]
|
[BZ #16854]
|
||||||
* socket/sys/socket.h: Fix typo in comment.
|
* socket/sys/socket.h: Fix typo in comment.
|
||||||
|
|
||||||
|
|
4
NEWS
4
NEWS
|
@ -14,8 +14,8 @@ Version 2.20
|
||||||
16609, 16610, 16611, 16613, 16619, 16623, 16629, 16632, 16634, 16639,
|
16609, 16610, 16611, 16613, 16619, 16623, 16629, 16632, 16634, 16639,
|
||||||
16642, 16648, 16649, 16670, 16674, 16677, 16680, 16683, 16689, 16695,
|
16642, 16648, 16649, 16670, 16674, 16677, 16680, 16683, 16689, 16695,
|
||||||
16701, 16706, 16707, 16712, 16713, 16714, 16731, 16739, 16740, 16743,
|
16701, 16706, 16707, 16712, 16713, 16714, 16731, 16739, 16740, 16743,
|
||||||
16758, 16759, 16760, 16770, 16786, 16789, 16799, 16800, 16815, 16824,
|
16754, 16758, 16759, 16760, 16770, 16786, 16789, 16799, 16800, 16815,
|
||||||
16831, 16838, 16854.
|
16824, 16831, 16838, 16854.
|
||||||
|
|
||||||
* Running the testsuite no longer terminates as soon as a test fails.
|
* Running the testsuite no longer terminates as soon as a test fails.
|
||||||
Instead, a file tests.sum (xtests.sum from "make xcheck") is generated,
|
Instead, a file tests.sum (xtests.sum from "make xcheck") is generated,
|
||||||
|
|
|
@ -5305,26 +5305,26 @@ otherwise.
|
||||||
|
|
||||||
@comment stdio.h
|
@comment stdio.h
|
||||||
@comment GNU
|
@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.
|
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.
|
If you declare the function as shown above, this is the type it will have.
|
||||||
@end deftp
|
@end deftp
|
||||||
|
|
||||||
@comment stdio.h
|
@comment stdio.h
|
||||||
@comment GNU
|
@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.
|
The data type of the write function for a custom stream.
|
||||||
@end deftp
|
@end deftp
|
||||||
|
|
||||||
@comment stdio.h
|
@comment stdio.h
|
||||||
@comment GNU
|
@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.
|
The data type of the seek function for a custom stream.
|
||||||
@end deftp
|
@end deftp
|
||||||
|
|
||||||
@comment stdio.h
|
@comment stdio.h
|
||||||
@comment GNU
|
@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.
|
The data type of the close function for a custom stream.
|
||||||
@end deftp
|
@end deftp
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue