=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/ctfconv/parse.c,v retrieving revision 1.17 retrieving revision 1.18 diff -c -r1.17 -r1.18 *** src/usr.bin/ctfconv/parse.c 2024/02/21 13:20:38 1.17 --- src/usr.bin/ctfconv/parse.c 2024/02/21 13:21:56 1.18 *************** *** 1,4 **** ! /* $OpenBSD: parse.c,v 1.17 2024/02/21 13:20:38 claudio Exp $ */ /* * Copyright (c) 2016-2017 Martin Pieuchot --- 1,4 ---- ! /* $OpenBSD: parse.c,v 1.18 2024/02/21 13:21:56 claudio Exp $ */ /* * Copyright (c) 2016-2017 Martin Pieuchot *************** *** 50,56 **** #define nitems(_a) (sizeof((_a)) / sizeof((_a)[0])) #endif ! #define DPRINTF(x...) do { /*printf(x)*/ } while (0) #define VOID_OFFSET 1 /* Fake offset for generating "void" type. */ --- 50,60 ---- #define nitems(_a) (sizeof((_a)) / sizeof((_a)[0])) #endif ! #ifdef DEBUG ! #define DPRINTF(x...) do { printf(x); } while (0) ! #else ! #define DPRINTF(x...) do { ; } while (0) ! #endif #define VOID_OFFSET 1 /* Fake offset for generating "void" type. */