• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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