You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by rb...@hyperreal.org on 1999/02/23 16:28:33 UTC

cvs commit: apache-apr/include apr_errno.h apr_file_io.h

rbb         99/02/23 07:28:32

  Modified:    include  apr_errno.h apr_file_io.h
  Log:
  Include apr_close prototype, and defines needed for it.
  
  Revision  Changes    Path
  1.4       +3 -0      apache-apr/include/apr_errno.h
  
  Index: apr_errno.h
  ===================================================================
  RCS file: /home/cvs/apache-apr/include/apr_errno.h,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- apr_errno.h	1999/02/22 16:43:52	1.3
  +++ apr_errno.h	1999/02/23 15:28:31	1.4
  @@ -63,6 +63,9 @@
   */
   #define APRStatus int
   
  +#define APR_SUCCESS 1
  +#define APR_FAILURE -1 
  +
   #define ENOSTAT 4001
   
   #endif  /* ! APR_ERRNO_H */
  
  
  
  1.3       +1 -1      apache-apr/include/apr_file_io.h
  
  Index: apr_file_io.h
  ===================================================================
  RCS file: /home/cvs/apache-apr/include/apr_file_io.h,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- apr_file_io.h	1999/02/22 16:31:02	1.2
  +++ apr_file_io.h	1999/02/23 15:28:32	1.3
  @@ -90,5 +90,5 @@
   
   /*   Function definitions */
   APRFile *apr_open(char *fname, int flag, mode_t mode);
  -
  +APRStatus apr_close(APRFile file);
   #endif  /* ! APR_FILE_IO_H */