/* 4m v2.15 (sendpacket.c)
 * (C) Copyright 1990 by Carrick Sean Casey
 * (C) Copyright 1993 by Scott Chasin and Michaeljon Miller
 *
 * 3-22-93 See file COPYING for copyright information.
 *
 * Packet exporting
 *
 */

#include <stdio.h>

extern int write ();

int _sendpacket(s, pkt)
     int s;
     char *pkt;
{
    return(write(s, pkt, strlen(pkt)));
}
