home *** CD-ROM | disk | FTP | other *** search
/ Gold Fish 3 / goldfish_volume_3.bin / files / comm / tcp / amitcp-sdk / src / rpclib / chkabort.c < prev    next >
Encoding:
Text File  |  1994-09-29  |  1.1 KB  |  39 lines

  1. RCS_ID_C = "$Id: chkabort.c,v 4.2 1994/09/29 23:48:50 jraja Exp $";
  2. /*
  3.  *      chkabort.c -- prevent SAS/C default CTRL-C checking
  4.  *
  5.  *      Copyright © 1994 AmiTCP/IP Group,
  6.  *                       Network Solutions Development Inc.
  7.  *                       All rights reserved. 
  8.  */
  9.  
  10. /****** net.lib/__chkabort ***************************************************
  11.  
  12.     NAME
  13.         __chkabort - replace SAS/C abort checking function with do-nothing
  14.  
  15.     SYNOPSIS
  16.  
  17.         void __regargs __chkabort(void);
  18.  
  19.     FUNCTION
  20.         This function replaces the __chkabort() function of the SAS/C
  21.         library. This is desirable, since the AmiTCP functions break
  22.         with the CTRL-C by default, and this should not be interfered
  23.         with the default SAS/C handling.
  24.  
  25.     NOTES
  26.         This function is SAS/C 6.x specific. Users of any other
  27.         compilers should provide similar functionality themselves.
  28.  
  29.     SEE ALSO
  30.         SAS/C 6.x Library Reference
  31.  
  32. ******************************************************************************
  33. */
  34.  
  35. void __regargs
  36. __chkabort(void)
  37. {
  38. }
  39.