rbb         99/06/01 10:11:47

  Modified:    apr/include apr_lib.h
  Log:
  Important define was missing.
  
  Revision  Changes    Path
  1.6       +2 -0      apache-apr/apr/include/apr_lib.h
  
  Index: apr_lib.h
  ===================================================================
  RCS file: /home/cvs/apache-apr/apr/include/apr_lib.h,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- apr_lib.h 1999/06/01 15:09:41     1.5
  +++ apr_lib.h 1999/06/01 17:11:44     1.6
  @@ -128,6 +128,8 @@
   #define ap_isalpha(x) (0)
   #define ap_isdigit(x) (0)
   
  +#define ap_tolower(c) (tolower(((unsigned char)(c))))
  +
   /*
    * Small utility macros to make things easier to read.  Not usually a
    * goal, to be sure..
  
  
  

Reply via email to