summary refs log tree commit diff
path: root/socket/send.c
diff options
context:
space:
mode:
Diffstat (limited to 'socket/send.c')
-rw-r--r--socket/send.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/socket/send.c b/socket/send.c
index 7217ab8138..f6c7c2514b 100644
--- a/socket/send.c
+++ b/socket/send.c
@@ -20,7 +20,7 @@
 
 /* Send N bytes of BUF to socket FD.  Returns the number sent or -1.  */
 ssize_t
-__send (int fd, const __ptr_t buf, size_t n, int flags)
+__send (int fd, const void *buf, size_t n, int flags)
 {
   __set_errno (ENOSYS);
   return -1;