/****************************************************************************
*                                                                           *
* mcstd.h                                                                   *
*                                                                           *
* header file for my standard stuff                                         *
*                                                                           *
****************************************************************************/

#ifndef MCSTD_H

   #define MCSTD_H

   #define MCSTD_H_VERSION "\0$VER: mcstd_h 1.00 (28.2.1995)\0";

#ifdef AMIGA   /* see note 1 */
   #include <exec/types.h>
#else
   #ifndef BOOL
      typedef int BOOL;
      #define TRUE  1
      #define FALSE 0
   #endif /* BOOL */
#endif /* _DCC */

#endif /* MCSTD_H */

/* NOTE 1 : Note the clumsy embedding of the logical types. The Amiga
            operating system already has a definition for BOOL, TRUE,
            and FALSE. We must default to it's usage, otherwise we'll
            either get a Duplicate Symbol warning, or expose ourselves
            to a crash - which we absolutely do not want to do      */
