Mehmet Kayaalp <[email protected]> wrote: > +#define info(format, args...) fprintf(stdout, "INFO: " format, ## args)
Btw, you really ought to be using standard varargs macros:
#define info(format, ...) fprintf(stdout, "INFO: " format,
##__VA_LIST__)
But don't worry about that for now.
David

