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