diff options
author | rpluem <rpluem@13f79535-47bb-0310-9956-ffa450edef68> | 2009-11-13 06:40:13 +0000 |
---|---|---|
committer | rpluem <rpluem@13f79535-47bb-0310-9956-ffa450edef68> | 2009-11-13 06:40:13 +0000 |
commit | e989da98ae88cffac480e43004378b81c6132388 (patch) | |
tree | 6005638209e57d09fac5754afad575ac61c116a6 /network_io | |
parent | 81cbbfa445c54c10fc84f83ff094053ff9595f3d (diff) | |
download | libapr-e989da98ae88cffac480e43004378b81c6132388.tar.gz |
* Add missing APR_DECLARE for apr_socket_atreadeof
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@835758 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'network_io')
-rw-r--r-- | network_io/unix/socket_util.c | 2 |
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; |