00001
00014 #ifndef FSD_DEBUG_H_
00015 #define FSD_DEBUG_H_
00016
00017
00019 #define FSD_DEBUG
00020
00021 #define FSD_INFO
00022
00023
00025 #undef PDEBUG
00026 #ifdef FSD_DEBUG
00027 # define PDEBUG(fmt, args...) fprintf(stderr, "FSD: " fmt, ## args)
00028 #else
00029 # define PDEBUG(fmt, args...)
00030 #endif
00031
00032
00034 #undef PINFO
00035 #ifdef FSD_INFO
00036 # define PINFO(fmt, args...) printf(fmt, ## args)
00037 #else
00038 # define PINFO(fmt, args...)
00039 #endif
00040
00041
00042 #endif
00043
00044