/* * Copyright (c) 1988, 1993 * 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 8.2 (Berkeley) 02/21/94"; #endif /* LIBC_SCCS and not lint */ #include #include #include ssize_t send(s, msg, len, flags) int s, flags; size_t len; const void *msg; { return (sendto(s, msg, len, flags, NULL, 0)); }