Skip to content
Snippets Groups Projects
common.h 234 B
Newer Older
  • Learn to ignore specific revisions
  • Jakob Olsson's avatar
    Jakob Olsson committed
    #ifndef COMMON_H
    #define COMMON_H
    #define PIPE_PATH "/tmp/appipe"
    #define DEBUG(message, ...)						\
    	do											\
    	{											\
    		fprintf(stdout, "\n(DEBUG)\t");			\
    		fprintf(stdout, message, ##__VA_ARGS__);\
    	} while (0)
    #endif