Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-02-21 10:05:28

0001 /*
0002  *  bool.h  --
0003  *
0004  *  Original: 23-Apr-1995 19:59
0005  *
0006  *  Author:   Maarten Ballintijn <Maarten.Ballintijn@cern.ch>
0007  *
0008  *  $Id$
0009  *
0010  *  $Log$
0011  *  Revision 1.2  1996/04/23 18:37:11  maartenb
0012  *  - Add RCS keywords
0013  *
0014  *
0015  */
0016 
0017 #ifndef CERN_BOOL
0018 #define CERN_BOOL
0019 
0020 
0021 
0022 #ifndef FALSE
0023 #define FALSE 0
0024 #endif
0025 
0026 #ifndef TRUE
0027 #define TRUE (! FALSE)
0028 #endif
0029 
0030 typedef int bool;
0031 
0032 #endif  /*  CERN_BOOL   */