#ifndef PC_DBG_H
#define PC_DBG_H
/* ---------------------------------------------------------------------
   (c) ED 1999
   Projet       : CLIB
   Fonction     : Macros de debug
   Module       : PC_DBG
   Fichier      : PC_DBG.H
   Creation     : 11-10-1999
   Modification : 11-10-1999
   --------------------------------------------------------------------- */
/* ---------------------------------------------------------------------
   Journal
   11-10-1999 Version Operationelle
   --------------------------------------------------------------------- */

#ifndef __PC__
#ifdef __DEBUG__
#define __PC__ 1
#else
#define __PC__ 0
#endif
#endif

#if __PC__
#ifdef DETAIL
#define __DETAIL__ 1
#else
#define __DETAIL__ 0
#endif
#endif

#endif /* PC_DBG_H */
