1 /* 2 * Copyright (c) 2001 by Sun Microsystems, Inc. 3 * All rights reserved. 4 */ 5 6 /* 7 * Copyright (c) 1999 by Internet Software Consortium. 8 * 9 * Permission to use, copy, modify, and distribute this software for any 10 * purpose with or without fee is hereby granted, provided that the above 11 * copyright notice and this permission notice appear in all copies. 12 * 13 * THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS 14 * ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES 15 * OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE 16 * CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL 17 * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR 18 * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS 19 * ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS 20 * SOFTWARE. 21 */ 22 23 #ifndef _RES_DEBUG_H_ 24 #define _RES_DEBUG_H_ 25 26 #pragma ident "%Z%%M% %I% %E% SMI" 27 28 #ifndef DEBUG 29 # define Dprint(cond, args) /*empty*/ 30 # define DprintQ(cond, args, query, size) /*empty*/ 31 # define Aerror(statp, file, string, error, address) /*empty*/ 32 # define Perror(statp, file, string, error) /*empty*/ 33 #else 34 # define Dprint(cond, args) if (cond) {fprintf args;} else {} 35 # define DprintQ(cond, args, query, size) if (cond) {\ 36 fprintf args;\ 37 res_pquery(statp, query, size, stdout);\ 38 } else {} 39 #endif 40 41 #endif /* _RES_DEBUG_H_ */ 42