new copyright notice
[unix-history] / usr / src / lib / libc / net / send.c
CommitLineData
20ff7e1b
KB
1/*
2 * Copyright (c) 1988 The Regents of the University of California.
3 * All rights reserved.
4 *
269a7923 5 * %sccs.include.redist.c%
20ff7e1b
KB
6 */
7
8#if defined(LIBC_SCCS) && !defined(lint)
269a7923 9static char sccsid[] = "@(#)send.c 5.2 (Berkeley) %G%";
20ff7e1b
KB
10#endif /* LIBC_SCCS and not lint */
11
12#include <sys/types.h>
13#include <sys/socket.h>
14#include <stdio.h>
15
16send(s, msg, len, flags)
17 int s, len, flags;
18 char *msg;
19{
20 return(sendto(s, msg, len, flags, (struct sockaddr *)NULL, 0));
21}