Created
August 4, 2020 14:41
-
-
Save dhh1128/a0972d8750c3d57f4c0a004dd04a5416 to your computer and use it in GitHub Desktop.
fancier version of eprintf
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