You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by rp...@apache.org on 2009/11/13 07:41:23 UTC

svn commit: r835759 - /apr/apr/branches/1.4.x/network_io/unix/socket_util.c

Author: rpluem
Date: Fri Nov 13 06:41:23 2009
New Revision: 835759

URL: http://svn.apache.org/viewvc?rev=835759&view=rev
Log:
Merge r835758 from trunk:

* Add missing APR_DECLARE for apr_socket_atreadeof

Submitted by: rpluem
Reviewed by: rpluem

Modified:
    apr/apr/branches/1.4.x/network_io/unix/socket_util.c

Modified: apr/apr/branches/1.4.x/network_io/unix/socket_util.c
URL: http://svn.apache.org/viewvc/apr/apr/branches/1.4.x/network_io/unix/socket_util.c?rev=835759&r1=835758&r2=835759&view=diff
==============================================================================
--- apr/apr/branches/1.4.x/network_io/unix/socket_util.c (original)
+++ apr/apr/branches/1.4.x/network_io/unix/socket_util.c Fri Nov 13 06:41:23 2009
@@ -17,7 +17,7 @@
 #include "apr_network_io.h"
 #include "apr_poll.h"
 
-apr_status_t apr_socket_atreadeof(apr_socket_t *sock, int *atreadeof)
+APR_DECLARE(apr_status_t) apr_socket_atreadeof(apr_socket_t *sock, int *atreadeof)
 {
     apr_pollfd_t pfds[1];
     apr_status_t rv;