Skip to content

Instantly share code, notes, and snippets.

@dhh1128
Created November 21, 2014 20:38
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dhh1128/4f2e50c5aa23589ad4ad to your computer and use it in GitHub Desktop.
Save dhh1128/4f2e50c5aa23589ad4ad to your computer and use it in GitHub Desktop.
simple variadic macro
#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