summaryrefslogtreecommitdiff
path: root/network_io/beos/sendrecv.c
diff options
context:
space:
mode:
authorrbb <rbb@13f79535-47bb-0310-9956-ffa450edef68>2000-04-03 19:45:36 +0000
committerrbb <rbb@13f79535-47bb-0310-9956-ffa450edef68>2000-04-03 19:45:36 +0000
commitc22cf7f831deced25759629459531df54eeeb6c0 (patch)
treef9f6fabaabe2287e4b70fe884966bc4edc0e5278 /network_io/beos/sendrecv.c
parentcda27b2fd17c50d05e3f589fc31db462bc9d0b8f (diff)
downloadlibapr-c22cf7f831deced25759629459531df54eeeb6c0.tar.gz
Finish the APR naming cleanup. This removes the struct's from
apr_variable declarations. This works on Unix, but a test compile on other platforms would be a good idea. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@59773 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'network_io/beos/sendrecv.c')
-rw-r--r--network_io/beos/sendrecv.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/network_io/beos/sendrecv.c b/network_io/beos/sendrecv.c
index e25aa9241..9845f4691 100644
--- a/network_io/beos/sendrecv.c
+++ b/network_io/beos/sendrecv.c
@@ -54,7 +54,7 @@
#include "networkio.h"
-ap_status_t ap_send(struct ap_socket_t *sock, const char *buf, ap_ssize_t *len)
+ap_status_t ap_send(ap_socket_t *sock, const char *buf, ap_ssize_t *len)
{
ssize_t rv;
@@ -99,7 +99,7 @@ ap_status_t ap_send(struct ap_socket_t *sock, const char *buf, ap_ssize_t *len)
return APR_SUCCESS;
}
-ap_status_t ap_recv(struct ap_socket_t *sock, char *buf, ap_ssize_t *len)
+ap_status_t ap_recv(ap_socket_t *sock, char *buf, ap_ssize_t *len)
{
ap_ssize_t rv;