You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by do...@locus.apache.org on 2000/04/28 20:31:20 UTC

cvs commit: apache-2.0/src/lib/apr/include apr_general.h

dougm       00/04/28 11:31:20

  Modified:    src/lib/apr/include apr_general.h
  Log:
  don't redefine TRUE/FALSE
  
  Revision  Changes    Path
  1.32      +5 -1      apache-2.0/src/lib/apr/include/apr_general.h
  
  Index: apr_general.h
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/lib/apr/include/apr_general.h,v
  retrieving revision 1.31
  retrieving revision 1.32
  diff -u -r1.31 -r1.32
  --- apr_general.h	2000/04/28 18:27:40	1.31
  +++ apr_general.h	2000/04/28 18:31:20	1.32
  @@ -72,8 +72,12 @@
   extern "C" {
   #endif /* __cplusplus */
   
  -#define TRUE 1
  +#ifndef FALSE
   #define FALSE 0
  +#endif
  +#ifndef TRUE
  +#define TRUE (!FALSE)
  +#endif
   
   #define MAXIMUM_WAIT_OBJECTS 64