xref: /aosp_15_r20/external/ublksrv/nbd/nbd-debug.h (revision 94c4a1e103eb1715230460aab379dff275992c20)
1 // SPDX-License-Identifier: GPL-2.0
2 
3 #ifndef NBD_DEBUG_H
4 #define NBD_DEBUG_H
5 #include "config.h"
6 
7 #ifdef __cplusplus
8 extern "C" {
9 #endif
10 
11 /* Debugging macros */
12 #ifdef DODBG
13 #define NBD_DEBUG(...) printf(__VA_ARGS__)
14 #else
15 #define NBD_DEBUG(...)
16 #endif
17 #ifndef PACKAGE_VERSION
18 #define PACKAGE_VERSION ""
19 #endif
20 
21 #ifdef __cplusplus
22 }
23 #endif
24 #endif
25