Initial commit.
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
#ifndef _I3LOCK_H
|
||||
#define _I3LOCK_H
|
||||
|
||||
/* This macro will only print debug output when started with --debug.
|
||||
* This is important because xautolock (for example) closes stdout/stderr by
|
||||
* default, so just printing something to stdout will lead to the data ending
|
||||
* up on the X11 socket (!). */
|
||||
#define DEBUG(fmt, ...) \
|
||||
do { \
|
||||
if (debug_mode) { \
|
||||
fprintf(stderr, "[i38lock-debug] " fmt, ##__VA_ARGS__); \
|
||||
} \
|
||||
} while (0)
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user