diff options
Diffstat (limited to 'src/lib/libc/net/send.c')
-rw-r--r-- | src/lib/libc/net/send.c | 22 |
1 files changed, 3 insertions, 19 deletions
diff --git a/src/lib/libc/net/send.c b/src/lib/libc/net/send.c index 88f3550ec6..1bfc80b87a 100644 --- a/src/lib/libc/net/send.c +++ b/src/lib/libc/net/send.c | |||
@@ -1,5 +1,4 @@ | |||
1 | /* $NetBSD: send.c,v 1.6 1995/02/25 06:21:02 cgd Exp $ */ | 1 | /* $OpenBSD: send.c,v 1.5 2005/08/06 20:30:04 espie Exp $ */ |
2 | |||
3 | /* | 2 | /* |
4 | * Copyright (c) 1988, 1993 | 3 | * Copyright (c) 1988, 1993 |
5 | * The Regents of the University of California. All rights reserved. | 4 | * The Regents of the University of California. All rights reserved. |
@@ -12,11 +11,7 @@ | |||
12 | * 2. Redistributions in binary form must reproduce the above copyright | 11 | * 2. Redistributions in binary form must reproduce the above copyright |
13 | * notice, this list of conditions and the following disclaimer in the | 12 | * notice, this list of conditions and the following disclaimer in the |
14 | * documentation and/or other materials provided with the distribution. | 13 | * documentation and/or other materials provided with the distribution. |
15 | * 3. All advertising materials mentioning features or use of this software | 14 | * 3. Neither the name of the University nor the names of its contributors |
16 | * must display the following acknowledgement: | ||
17 | * This product includes software developed by the University of | ||
18 | * California, Berkeley and its contributors. | ||
19 | * 4. Neither the name of the University nor the names of its contributors | ||
20 | * may be used to endorse or promote products derived from this software | 15 | * may be used to endorse or promote products derived from this software |
21 | * without specific prior written permission. | 16 | * without specific prior written permission. |
22 | * | 17 | * |
@@ -33,24 +28,13 @@ | |||
33 | * SUCH DAMAGE. | 28 | * SUCH DAMAGE. |
34 | */ | 29 | */ |
35 | 30 | ||
36 | #if defined(LIBC_SCCS) && !defined(lint) | ||
37 | #if 0 | ||
38 | static char sccsid[] = "@(#)send.c 8.2 (Berkeley) 2/21/94"; | ||
39 | #else | ||
40 | static char rcsid[] = "$NetBSD: send.c,v 1.6 1995/02/25 06:21:02 cgd Exp $"; | ||
41 | #endif | ||
42 | #endif /* LIBC_SCCS and not lint */ | ||
43 | |||
44 | #include <sys/types.h> | 31 | #include <sys/types.h> |
45 | #include <sys/socket.h> | 32 | #include <sys/socket.h> |
46 | 33 | ||
47 | #include <stddef.h> | 34 | #include <stddef.h> |
48 | 35 | ||
49 | ssize_t | 36 | ssize_t |
50 | send(s, msg, len, flags) | 37 | send(int s, const void *msg, size_t len, int flags) |
51 | int s, flags; | ||
52 | size_t len; | ||
53 | const void *msg; | ||
54 | { | 38 | { |
55 | return (sendto(s, msg, len, flags, NULL, 0)); | 39 | return (sendto(s, msg, len, flags, NULL, 0)); |
56 | } | 40 | } |