/* IBM_PROLOG_BEGIN_TAG                                                   */
/* This is an automatically generated prolog.                             */
/*                                                                        */
/* bos720 src/bos/kernext/usb/common/commondebug.h 1.1                    */
/*                                                                        */
/* Licensed Materials - Property of IBM                                   */
/*                                                                        */
/* Restricted Materials of IBM                                            */
/*                                                                        */
/* COPYRIGHT International Business Machines Corp. 2003,2004              */
/* All Rights Reserved                                                    */
/*                                                                        */
/* US Government Users Restricted Rights - Use, duplication or            */
/* disclosure restricted by GSA ADP Schedule Contract with IBM Corp.      */
/*                                                                        */
/* IBM_PROLOG_END_TAG                                                     */
/* @(#)02	1.1  src/bos/kernext/usb/common/commondebug.h, sysxusb, bos720 2/9/04 17:41:40 */

#ifndef _COMMONDEBUG_H
#define _COMMONDEBUG_H 1

#ifdef COM_DEBUG

/* debug on */
/*
 COMDEBUG("%s.%d: message rv=%d\n",__FILE__,__LINE__,rv);
 put an X in front to disable a single message
 XCOMDEBUG("%s.%d: message rv=%d\n",__FILE__,__LINE__,rv);
*/

#define COMDEBUG printf
#define XCOMDEBUG if(1);else

#else /* COMMON_DEBUG */

/* debug off */

#define COMDEBUG if(1);else
#define XCOMDEBUG if(1);else

#endif /* COM_DEBUG */

#endif /* _COMMONDEBUG_H */
