home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload / ShartewareOverload.cdr / progm / clock.zip / CLKDLY.C < prev    next >
Text File  |  1986-12-22  |  896b  |  29 lines

  1. /***************************************************** CLKDLY.C
  2.  * NAME:    CLKDLY
  3.  *
  4.  * FUNCTION:    Delays a moment.  Used to implement a "wait"
  5.  *        operation to suspend program operation so
  6.  *        don't slow other applications unnecessarily.
  7.  *
  8.  * EXAMPLE:    CLKDLY();
  9.  *
  10.  * INPUTS:    none
  11.  *
  12.  * OUTPUT:    none
  13.  *
  14.  **************************************************************
  15.  * 11/22/86 -RBM- original implementation
  16.  **************************************************************/
  17. #define XTRNALGLOBALS 1        /* globals externally defined    */
  18. #include "E:CLKGBL.H"        /* setup global storage */
  19.  
  20. /**************************************************************
  21.  * BEGIN ROUTINE
  22.  **************************************************************/
  23.  
  24. CLKDLY()
  25. {
  26.  
  27.  
  28. }                /***** end of routine ******/
  29.