* ld.texinfo (Options): Fix example for --wrap.

This commit is contained in:
Andreas Schwab
2004-03-01 17:33:36 +00:00
parent 676a64f422
commit cc2f008e43
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2004-03-01 Andreas Schwab <schwab@suse.de>
* ld.texinfo (Options): Fix example for --wrap.
2004-02-25 Danny Smith <dannysmith@users.sourceforge.net> 2004-02-25 Danny Smith <dannysmith@users.sourceforge.net>
* pe-dll.c (fill_edata): Check that exported_symbol_sections is * pe-dll.c (fill_edata): Check that exported_symbol_sections is

View File

@ -1702,9 +1702,9 @@ Here is a trivial example:
@smallexample @smallexample
void * void *
__wrap_malloc (int c) __wrap_malloc (size_t c)
@{ @{
printf ("malloc called with %ld\n", c); printf ("malloc called with %zu\n", c);
return __real_malloc (c); return __real_malloc (c);
@} @}
@end smallexample @end smallexample