summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrpluem <rpluem@13f79535-47bb-0310-9956-ffa450edef68>2009-11-13 06:41:23 +0000
committerrpluem <rpluem@13f79535-47bb-0310-9956-ffa450edef68>2009-11-13 06:41:23 +0000
commitb7fc0f861e56598b3c6872832e94ee1cbcac5720 (patch)
tree43e56e3b5bf69a1c31854ece0c550a0ac74154bb
parent857760d770190f2382bbfee398ff32b7c6f72006 (diff)
downloadlibapr-b7fc0f861e56598b3c6872832e94ee1cbcac5720.tar.gz
Merge r835758 from trunk:
* Add missing APR_DECLARE for apr_socket_atreadeof Submitted by: rpluem Reviewed by: rpluem git-svn-id: http://svn.apache.org/repos/asf/apr/apr/branches/1.4.x@835759 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--network_io/unix/socket_util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/network_io/unix/socket_util.c b/network_io/unix/socket_util.c
index b23aed6b2..6cd28a55c 100644
--- a/network_io/unix/socket_util.c
+++ b/network_io/unix/socket_util.c
@@ -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;