Created
November 21, 2014 20:38
-
-
Save dhh1128/4f2e50c5aa23589ad4ad to your computer and use it in GitHub Desktop.
simple variadic macro
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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