Commit 1c42f5c6 by Zuxy Meng Committed by Gerald Pfeifer

extend.texi (Function Attributes): Add missing comma in the example of the "alloc_size" attribute.

	* doc/extend.texi (Function Attributes): Add missing comma in the
	example of the "alloc_size" attribute.

From-SVN: r133462
parent 808e68bb
2008-03-23 Zuxy Meng <zuxy.meng@gmail.com>
* doc/extend.texi (Function Attributes): Add missing comma in the
example of the "alloc_size" attribute.
2008-03-23 Uros Bizjak <ubizjak@gmail.com>
Revert:
......
......@@ -1881,7 +1881,7 @@ For instance,
@smallexample
void* my_calloc(size_t, size_t) __attribute__((alloc_size(1,2)))
void my_realloc(void* size_t) __attribute__((alloc_size(2)))
void my_realloc(void*, size_t) __attribute__((alloc_size(2)))
@end smallexample
declares that my_calloc will return memory of the size given by
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment