/* my own printf.
* better than the crufty library one.
*/
int attribute (
/* the object to print to */
void *my_object,
/* format string, ala printf */
const char *my_format,
/* arguments */
...)
__attribute__ ((format (printf, 2, 3)));