Skip to content

Instantly share code, notes, and snippets.

@dhh1128
Created November 21, 2014 20:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dhh1128/107323f0e3b69f959de0 to your computer and use it in GitHub Desktop.
Save dhh1128/107323f0e3b69f959de0 to your computer and use it in GitHub Desktop.
fancier variadic macro using GCC's ##__VA_ARGS__ extension
#define eprintf(fmt, ...) \
fprintf(stderr, fmt, ##__VA_ARGS)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment