home *** CD-ROM | disk | FTP | other *** search
/ Il CD di internet / CD.iso / SOURCE / N / TCPIP / NNTP-1.000 / NNTP-1 / nntp.1.5.11t / server / slave.c < prev    next >
Encoding:
C/C++ Source or Header  |  1993-10-17  |  350 b   |  21 lines

  1. #ifndef lint
  2. static char    *sccsid = "@(#)slave.c    1.3    (Berkeley) 6/26/87";
  3. #endif
  4.  
  5. #include "common.h"
  6.  
  7. /*
  8.  * SLAVE
  9.  *
  10.  * note slave status, which is actually unimplemented.
  11.  */
  12.  
  13. slave(argc, argv)
  14.     int    argc;
  15.     char    *argv[];
  16. {
  17.     printf("%d Kinky, kinky.  I don't support such perversions.\r\n",
  18.         OK_SLAVE);        /* Thanks Serge! */
  19.     (void) fflush(stdout);
  20. }
  21.