Skip to content

Instantly share code, notes, and snippets.

@bradtgmurray
Forked from zulak/gist:295895
Created February 5, 2010 15:57
Show Gist options
  • Save bradtgmurray/295896 to your computer and use it in GitHub Desktop.
Save bradtgmurray/295896 to your computer and use it in GitHub Desktop.
FILE *dbgFile;
#ifndef LOG_H
#define LOG_H
#ifndef NDEBUG
extern FILE *dbgFile;
#define debug(...) (fprintf(dbgFile, __VA_ARGS__))
#else
#define debug(...)
#endif // ifndef NDEBUG
#endif // ifndef LOG_H
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment