SCCS id got lost along the way
[unix-history] / usr / src / lib / libc / net / recv.c
index 579031b..035f7d7 100644 (file)
@@ -6,7 +6,7 @@
  */
 
 #if defined(LIBC_SCCS) && !defined(lint)
  */
 
 #if defined(LIBC_SCCS) && !defined(lint)
-static char sccsid[] = "@(#)recv.c     5.2 (Berkeley) %G%";
+static char sccsid[] = "@(#)recv.c     5.3 (Berkeley) %G%";
 #endif /* LIBC_SCCS and not lint */
 
 #include <sys/types.h>
 #endif /* LIBC_SCCS and not lint */
 
 #include <sys/types.h>
@@ -15,7 +15,7 @@ static char sccsid[] = "@(#)recv.c    5.2 (Berkeley) %G%";
 
 recv(s, buf, len, flags)
        int s, len, flags;
 
 recv(s, buf, len, flags)
        int s, len, flags;
-       char *buf;
+       void *buf;
 {
        return(recvfrom(s, buf, len, flags, (struct sockaddr *)NULL, 0));
 }
 {
        return(recvfrom(s, buf, len, flags, (struct sockaddr *)NULL, 0));
 }