File: nbd-debug.h

package info (click to toggle)
nbd 1%3A3.26.1-6.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 7,236 kB
  • sloc: ansic: 8,365; sh: 5,493; makefile: 166; yacc: 33; lex: 13
file content (14 lines) | stat: -rw-r--r-- 233 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef NBD_DEBUG_H
#define NBD_DEBUG_H
#include "config.h"
/* Debugging macros */
#ifdef DODBG
#define DEBUG(...) printf(__VA_ARGS__)
#else
#define DEBUG(...)
#endif
#ifndef PACKAGE_VERSION
#define PACKAGE_VERSION ""
#endif

#endif