new copyright notice
[unix-history] / usr / src / lib / libc / net / send.c
/*
* Copyright (c) 1988 The Regents of the University of California.
* All rights reserved.
*
* %sccs.include.redist.c%
*/
#if defined(LIBC_SCCS) && !defined(lint)
static char sccsid[] = "@(#)send.c 5.2 (Berkeley) %G%";
#endif /* LIBC_SCCS and not lint */
#include <sys/types.h>
#include <sys/socket.h>
#include <stdio.h>
send(s, msg, len, flags)
int s, len, flags;
char *msg;
{
return(sendto(s, msg, len, flags, (struct sockaddr *)NULL, 0));
}