You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by bj...@apache.org on 2001/07/26 17:58:57 UTC

cvs commit: apr/include apr_signal.h

bjh         01/07/26 08:58:57

  Modified:    include  apr_signal.h
  Log:
  Add appropriate APR_DECLARE's for signal functions.
  
  Revision  Changes    Path
  1.8       +2 -2      apr/include/apr_signal.h
  
  Index: apr_signal.h
  ===================================================================
  RCS file: /home/cvs/apr/include/apr_signal.h,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- apr_signal.h	2001/02/16 04:15:47	1.7
  +++ apr_signal.h	2001/07/26 15:58:57	1.8
  @@ -75,7 +75,7 @@
   typedef void apr_sigfunc_t(int);
   
   /* ### how to doc this? */
  -apr_sigfunc_t *apr_signal(int signo, apr_sigfunc_t * func);
  +APR_DECLARE(apr_sigfunc_t *) apr_signal(int signo, apr_sigfunc_t * func);
   
   #if defined(SIG_IGN) && !defined(SIG_ERR)
   #define SIG_ERR ((apr_sigfunc_t *) -1)
  @@ -92,7 +92,7 @@
    * @return The description of the signal
    * @deffunc const char *apr_signal_get_description(int signum)
    */
  -const char *apr_signal_get_description(int signum);
  +APR_DECLARE(const char *) apr_signal_get_description(int signum);
   
   /**
    * APR-private function for initializing the signal package