home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload / ShartewareOverload.cdr / progm / clock.zip / CLKIZN.C < prev    next >
Text File  |  1987-01-03  |  1KB  |  31 lines

  1. /***************************************************** CLKIZN.C
  2.  * NAME:    CLKIZN
  3.  *
  4.  * FUNCTION:    One-time initialization
  5.  *
  6.  * EXAMPLE:    CLKIZN();
  7.  *
  8.  * INPUTS:    none.
  9.  *
  10.  * OUTPUT:    placed into global definitions
  11.  *
  12.  **************************************************************
  13.  * 11/22/86 -RBM- original implementation
  14.  **************************************************************/
  15. #define XTRNALGLOBALS 1        /* globals externally defined    */
  16. #include "E:CLKGBL.H"        /* setup global storage */
  17.  
  18. /**************************************************************
  19.  * BEGIN ROUTINE
  20.  **************************************************************/
  21.  
  22. CLKIZN()
  23. {
  24. thishr = -22;            /* force hands display immediately    */
  25. th24hr = -22;            /* force hands display immediately    */
  26. thismn = -22;            /* force hands display immediately    */
  27. thissc = -22;            /* force hands display immediately    */
  28.  
  29.  
  30. }                /***** end of routine ******/
  31.